mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
f3297ff565
- Bug 1161802 part 1 - Add FullscreenChanged callback in WidgetListener. r=roc (caee485f4) - Bug 1058712, e10s, support for copy image command, r=ehsan,mconley (42d1bcc2c) - Bug 1122090 - Make ContentHelper take a LayoutDeviceIntPoint instead of an nsIntPoint. r=botond (21588cadb) - Bug 1122090 - Send the allowed behaviour notification to APZ for touch blocks when touch-action is enabled. r=botond (5bb0aad4a) - remove unneeded include (b77797920) - Add wheel transaction support to APZ. (bug 1142866 part 1, r=kats) (a4ed2150a) - End APZ wheel transactions when the mouse moves out of frame. (bug 1142866 part 2, r=kats,botond) (b26b0eb89) - Add APZ support for test.mousescroll callbacks. (bug 1142866 part 3, r=kats) (424ef3ad7) - Add helper for applying async transforms to widget input events. (bug 1143567 part 1, r=kats) (221cf7b02) - Ensure input events account for APZ transforms on Gtk. (bug 1143567 part 2, r=kats) (a62991076) - Allow synthetic input events to be dispatched asynchronously. (bug 1146243, r=kats) (0878aac4e) - Bug 1120300 - Export WritingModes.h as mozilla/WritingModes.h. r=jfkthame (67838dec2) - Bug 1075670 - Make event.screen[XY] work in content processes (r=smaug,kats,tn,joshmoz) (7c800e2a1) - Bug 1150563 - Intermittent test_compartments.js | test_measure - [test_measure : 125] At least 10ms counted for built-in statistics (0) - false == true;r=yoric (72ce9c7fc) - Bug 1143847 - Fix bogus asserts in x64 Assembler::finish(). r=sunfish (36aecaf48) - pointer style (a1a5a7b0f) - Bug 1148232 - OdinMonkey: Mark x86 disassembler code as MOZ_COLD and use MOZ_RELEASE_ASSERT r=luke (346cf1fdd) - Bug 1148232 - OdinMonkey: Update an asm.js error message r=luke (98c72b0b1) - Bug 1148232 - OdinMonkey: Update tests to avoid using legacy syntax. r=luke (d212510f3) - Bug 1148232 - OdinMonkey: Misc CheckArrayAccess cleanups r=luke (e5cda1cf0) - pointer style (23135ba24) - Bug 1148232 - OdinMonkey: Always put asm.js heap alignment masks just before their accesses r=luke (d604adf5d) - pointer style (9a5d58741) - Bug 1148232 - IonMonkey: Delete unused code r=luke (ea5bc5edc) - pointer style (73be379e1) - Bug 1143704 part 1 - Make Emit1/Emit2 return bool instead of ptrdiff_t. r=luke (2ca42caa9) - pointer style (eb30078f0) - Bug 1143704 part 2 - Make Emit3/EmitCall/EmitBackPatchOp return bool instead of ptrdiff_t. r=jorendorff (7275c56af) - Bug 1143704 part 3 - Make EmitLoopHead return bool instead of ptrdiff_t. r=shu (aff098096) - Bug 1143704 part 4 - Turn Emit1 into a BytecodeEmitter method. r=bhackett (5ca0356ba) - Bug 1143704 part 5 - Add a cx member to BytecodeEmitter. r=Waldo (8ce42c388) - Bug 1143704 part 6 - Move more functions into BytecodeEmitter. r=efaust (b26f60b2f) - pointer style (39e0e76ab) - Bug 1143704 part 7 - Move more functions into BytecodeEmitter. r=bhackett (7397bc2e5) - pointer style (f08664ab1) - Bug 1143704 part 8 - Move more functions into BytecodeEmitter. r=luke (2b0411545) - pointer style (5042217ea) - Bug 1143704 part 9 - Move more functions into BytecodeEmitter. r=shu (97501236a) - pointer style (4248e54fa) - Bug 1143704 part 10 - Move more functions into BytecodeEmitter. r=efaust (cd1fcb6a4) - pointer style (06026238e) - Bug 1143704 part 11 - Move more functions into BytecodeEmitter. r=jorendorff (300cdd416) - Bug 1145491 part 1. Only do the fast path for JSOP_BINDGNAME when the script doesn't have a polluted global. r=luke,jandem (75d663d20) - Bug 1145491 part 2. Only do the fast path for JSOP_GETGNAME when the script doesn't have a polluted global. r=luke,jandem (776bb0b37) - Bug 1145491 part 3. Only do the fast path for JSOP_SETGNAME and JSOP_STRICTSETGNAME when the script doesn't have a polluted global. r=luke,jandem (dfc5781e2) - Bug 537013 - Make the find bar exist on a per-tab basis. r=dao (cf361fd57) - Bug 1145491 part 4. Emit JSOP_IMPLICITTHIS for JSOP_GETGNAME as well, because otherwise bareword calls in polluted-global scripts won't work right. r=luk (2a4c829e2) - Bug 1145491 part 5. Fix up various other places that check for JSOP_GET/SETNAME without checking for the GNAME versions too. r=luke (08ebda6b5) - pointer style (dbdd1393a) - Bug 1145491 part 6. Fix script cloning to propagate the polluted-global-scope state to the lambda templates in the script. r=luke (a0c85b629) - pointer style (906b885ff) - Bug 1145491 part 7. Stop checking compileAndGo before emitting GNAME ops. r=luke (33e64a432)
136 lines
3.1 KiB
JavaScript
136 lines
3.1 KiB
JavaScript
function bytecode(f) {
|
|
if (typeof disassemble !== "function")
|
|
return "unavailable";
|
|
var d = disassemble(f);
|
|
return d.slice(d.indexOf("main:"), d.indexOf("\n\n"));
|
|
}
|
|
|
|
function hasGname(f, v, hasIt = true) {
|
|
// Do a try-catch that prints the full stack, so we can tell
|
|
// _which_ part of this test failed.
|
|
try {
|
|
var b = bytecode(f);
|
|
if (b != "unavailable") {
|
|
assertEq(b.contains(`getgname "${v}"`), hasIt);
|
|
assertEq(b.contains(`getname "${v}"`), !hasIt);
|
|
}
|
|
} catch (e) {
|
|
print(e.stack);
|
|
throw e;
|
|
}
|
|
}
|
|
|
|
var x = "outer";
|
|
|
|
setLazyParsingEnabled(false);
|
|
{
|
|
let x = "inner";
|
|
eval("function g() { assertEq(x, 'inner');} g()");
|
|
eval("function g2() { (function nest() { assertEq(x, 'inner'); })(); } g2()");
|
|
}
|
|
eval(`
|
|
function g3() {
|
|
assertEq(x, 'outer');
|
|
}
|
|
g3();
|
|
hasGname(g3, 'x');
|
|
`);
|
|
eval(`
|
|
function g4() {
|
|
function nest() { assertEq(x, 'outer'); }
|
|
nest();
|
|
return nest;
|
|
}
|
|
hasGname(g4(), 'x');
|
|
`);
|
|
setLazyParsingEnabled(true);
|
|
|
|
{
|
|
let x = "inner";
|
|
eval("function h() { assertEq(x, 'inner');} h()");
|
|
eval("function h2() { (function nest() { assertEq(x, 'inner'); })(); } h2()");
|
|
}
|
|
// It sure would be nice if we could run the h3/h4 tests below, but it turns out
|
|
// that lazy functions and eval don't play together all that well. See bug
|
|
// 1146080. For now, assert we have no gname, so people will notice if they
|
|
// accidentally fix it and adjust this test accordingly.
|
|
eval(`
|
|
function h3() {
|
|
assertEq(x, 'outer');
|
|
}
|
|
h3();
|
|
hasGname(h3, 'x', false);
|
|
`);
|
|
eval(`
|
|
function h4() {
|
|
function nest() { assertEq(x, 'outer'); }
|
|
nest();
|
|
return nest;
|
|
}
|
|
hasGname(h4(), 'x', false);
|
|
`);
|
|
|
|
setLazyParsingEnabled(false);
|
|
with ({}) {
|
|
let x = "inner";
|
|
eval("function i() { assertEq(x, 'inner');} i()");
|
|
eval("function i2() { (function nest() { assertEq(x, 'inner'); })(); } i2()");
|
|
}
|
|
setLazyParsingEnabled(true);
|
|
|
|
with ({}) {
|
|
let x = "inner";
|
|
eval("function j() { assertEq(x, 'inner');} j()");
|
|
eval("function j2() { (function nest() { assertEq(x, 'inner'); })(); } j2()");
|
|
}
|
|
|
|
setLazyParsingEnabled(false);
|
|
(function () {
|
|
var x = "inner";
|
|
eval("function k() { assertEq(x, 'inner');} k()");
|
|
eval("function k2() { (function nest() { assertEq(x, 'inner'); })(); } k2()");
|
|
})();
|
|
setLazyParsingEnabled(true);
|
|
|
|
(function () {
|
|
let x = "inner";
|
|
eval("function l() { assertEq(x, 'inner');} l()");
|
|
eval("function l2() { (function nest() { assertEq(x, 'inner'); })(); } l2()");
|
|
})();
|
|
|
|
var y1 = 5;
|
|
eval(`
|
|
'use strict';
|
|
var y1 = 6;
|
|
assertEq(y1, 6);
|
|
(function() { assertEq(y1, 6); })()
|
|
`);
|
|
assertEq(y1, 5);
|
|
|
|
eval(`
|
|
'use strict';
|
|
var y2 = 6;
|
|
assertEq(y2, 6);
|
|
(function() { assertEq(y2, 6); })()
|
|
`);
|
|
|
|
setLazyParsingEnabled(false);
|
|
|
|
var y3 = 5;
|
|
eval(`
|
|
'use strict';
|
|
var y3 = 6;
|
|
assertEq(y3, 6);
|
|
(function() { assertEq(y3, 6); })()
|
|
`);
|
|
assertEq(y3, 5);
|
|
|
|
eval(`
|
|
'use strict';
|
|
var y4 = 6;
|
|
assertEq(y4, 6);
|
|
(function() { assertEq(y4, 6); })()
|
|
`);
|
|
|
|
setLazyParsingEnabled(true);
|