diff --git a/testing/mochitest/harness-overlay.xul b/testing/mochitest/harness-overlay.xul index 33420b8e0d9..d2c7e20ec21 100644 --- a/testing/mochitest/harness-overlay.xul +++ b/testing/mochitest/harness-overlay.xul @@ -82,7 +82,7 @@ function loadTests()
- +
diff --git a/testing/mochitest/plain-loop.html b/testing/mochitest/plain-loop.html index 6ea6ee0e133..787cb75d42f 100644 --- a/testing/mochitest/plain-loop.html +++ b/testing/mochitest/plain-loop.html @@ -43,7 +43,7 @@ function loadTests()
- +
diff --git a/testing/mochitest/server.js b/testing/mochitest/server.js index b4933849cb8..cee4f32bca1 100644 --- a/testing/mochitest/server.js +++ b/testing/mochitest/server.js @@ -620,7 +620,7 @@ function testListing(metadata, response) ), DIV({class: "clear"}), DIV({class: "frameholder"}, - IFRAME({scrolling: "no", id: "testframe", width: "500", height: "300", mozallowfullscreen: "true"}) + IFRAME({scrolling: "no", id: "testframe", width: "500", height: "300"}) ), DIV({class: "clear"}), DIV({class: "toggle"}, diff --git a/testing/mochitest/tests/Makefile.in b/testing/mochitest/tests/Makefile.in index 6686fc7f741..67086806245 100644 --- a/testing/mochitest/tests/Makefile.in +++ b/testing/mochitest/tests/Makefile.in @@ -27,7 +27,6 @@ _TEST_FILES = \ test_SpecialPowersExtension.html \ test_SpecialPowersExtension2.html \ file_SpecialPowersFrame1.html \ - test_cancelFullScreen.html \ $(NULL) ifneq ($(OS_TARGET),Android) diff --git a/testing/mochitest/tests/SimpleTest/SimpleTest.js b/testing/mochitest/tests/SimpleTest/SimpleTest.js index 776093e0142..1ac9509b981 100644 --- a/testing/mochitest/tests/SimpleTest/SimpleTest.js +++ b/testing/mochitest/tests/SimpleTest/SimpleTest.js @@ -680,10 +680,6 @@ SimpleTest.executeSoon = function(aFunc) { * SimpleTest.waitForExplicitFinish() has been invoked. **/ SimpleTest.finish = function () { - // Cancel element fullscreen mode due to Bug 728893 - if (document && document.mozFullScreenElement) { - document.mozCancelFullScreen(); - } if (SimpleTest._expectingUncaughtException) { SimpleTest.ok(false, "expectUncaughtException was called but no uncaught exception was detected!"); } diff --git a/testing/mochitest/tests/test_cancelFullScreen.html b/testing/mochitest/tests/test_cancelFullScreen.html deleted file mode 100644 index dcc8ae1eb73..00000000000 --- a/testing/mochitest/tests/test_cancelFullScreen.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - Test for Bug 728893 - - - - - - - Mozilla Bug - -
-
-
-
-
- - \ No newline at end of file