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

Unified Diff: LayoutTests/fast/dom/Window/showModalDialog-invalid-arguments.html

Issue 98853012: Revert of Remove uses of deprecated toWebCoreStringWithUndefinedOrNullCheck(v8::Handle<v8::Value>) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Window/showModalDialog-invalid-arguments-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/Window/showModalDialog-invalid-arguments.html
diff --git a/LayoutTests/fast/dom/Window/showModalDialog-invalid-arguments.html b/LayoutTests/fast/dom/Window/showModalDialog-invalid-arguments.html
deleted file mode 100644
index 04ca06cc303de3301e5fb1af1ff1d0f52497c96f..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/Window/showModalDialog-invalid-arguments.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-<head>
-<script src="../../../resources/js-test.js"></script>
-</head>
-<body>
-<script>
-description("Checks that passing invalid strings to window.showModalDialog() is properly handled.");
-
-if (window.testRunner)
- testRunner.setCanOpenWindows();
-
-var nonConvertibleToString = { toString: function() { throw "Exception in toString()"; } };
-var newWindow = null;
-shouldThrow("newWindow = window.showModalDialog(nonConvertibleToString)", "'Exception in toString()'");
-shouldBeNull("newWindow");
-shouldThrow("newWindow = window.showModalDialog('about:blank', '', nonConvertibleToString)", "'Exception in toString()'");
-shouldBeNull("newWindow");
-</script>
-</body>
-</html>
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Window/showModalDialog-invalid-arguments-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698