Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(359)

Side by Side Diff: LayoutTests/fast/dom/Geolocation/script-tests/invalid-internals-arguments.js

Issue 925953003: Make Geolocation internal test methods more resilient. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 description("Verify that using invalid or detached documents on internal test me thods does not crash.");
2
3 // The internals object and these test methods aren't available in production
4 // builds, but they are exposed to fuzzers.
5
6 if (!window.testRunner || !window.internals)
7 debug('This test can not run without testRunner or internals');
8
9 shouldThrow("internals.setGeolocationClientMock(null);");
10 shouldThrow("internals.setGeolocationPosition(null, 1, 2, 3);");
11 shouldThrow("internals.setGeolocationPermission(window.notThere, true);");
12 shouldThrow("internals.setGeolocationPositionUnavailableError(null, 'not availab le');");
13 shouldThrow("internals.numberOfPendingGeolocationPermissionRequests(null)");
14
15 var ifr = document.getElementById("ifr");
16 var iframe = ifr.contentWindow;
17 ifr.remove();
18 // Verify that detached documents do not crash.
19 shouldBeUndefined("iframe.internals.setGeolocationClientMock(iframe.document)");
20 shouldBeUndefined("iframe.internals.setGeolocationPosition(iframe.document, 1, 2 , 3)");
21 shouldBeUndefined("iframe.internals.setGeolocationPermission(iframe.document, tr ue)");
22 shouldBeUndefined("iframe.internals.setGeolocationPositionUnavailableError(ifram e.document, 'not available')");
23 shouldBe("iframe.internals.numberOfPendingGeolocationPermissionRequests(iframe.d ocument)", "-1");
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698