author | Carsten "Tomcat" Book <cbook@mozilla.com> |
Fri, 23 Sep 2016 12:14:13 +0200 | |
changeset 315047 | 60cc643978c7020926fe4145761e26945fcd5c37 |
parent 315046 | 9eae36f83dbae7434e74cd9c689a965031778370 |
child 315048 | c4d91d17c8ed2e385f4a4a3d97f861eee722626f |
child 315155 | 164b6355c46a80af32a76a7a3c37a55457c5c936 |
child 315162 | dad39cae4473549bdf2677997f268541559a9b55 |
child 315221 | 2e46d0c12db68401969a817832329187da8add06 |
push id | 82041 |
push user | cbook@mozilla.com |
push date | Fri, 23 Sep 2016 10:38:40 +0000 |
treeherder | mozilla-inbound@c4d91d17c8ed [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | me |
bugs | 972110, 674770 |
milestone | 52.0a1 |
first release with | nightly linux32
60cc643978c7
/
52.0a1
/
20160924030427
/
files
nightly linux64
60cc643978c7
/
52.0a1
/
20160924030427
/
files
nightly mac
60cc643978c7
/
52.0a1
/
20160924030427
/
files
nightly win32
60cc643978c7
/
52.0a1
/
20160924030427
/
files
nightly win64
60cc643978c7
/
52.0a1
/
20160924030427
/
files
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
releases | nightly linux32
52.0a1
/
20160924030427
/
pushlog to previous
nightly linux64
52.0a1
/
20160924030427
/
pushlog to previous
nightly mac
52.0a1
/
20160924030427
/
pushlog to previous
nightly win32
52.0a1
/
20160924030427
/
pushlog to previous
nightly win64
52.0a1
/
20160924030427
/
pushlog to previous
|
--- a/editor/libeditor/tests/test_bug674770-1.html +++ b/editor/libeditor/tests/test_bug674770-1.html @@ -37,27 +37,22 @@ function startTests() { linkShouldWork: false }, ]; var currentTest; function runNextTest() { localStorage.removeItem("clicked"); currentTest = tests.shift(); if (!currentTest) { SimpleTest.finish(); -<<<<<<< local return; } ok(true, currentTest.description + "Starting to test..."); synthesizeMouseAtCenter(currentTest.target(), { button: 1 }); } -======= - }, 500); - }, 500); -} ->>>>>>> other + addEventListener("storage", function(e) { is(e.key, "clicked", currentTest.description + "Key should always be 'clicked'"); is(e.newValue, "true", currentTest.description + "Value should always be 'true'"); ok(currentTest.linkShouldWork, currentTest.description + "The click operation on the link " + (currentTest.linkShouldWork ? "should work" : "shouldn't work")); SimpleTest.executeSoon(runNextTest); }, false);