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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/Window/window-custom-prototype-crash.html

Issue 2452073002: Freeze global prototype chain per WebIDL (Closed)
Patch Set: Test improvements Created 4 years, 1 month 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
Index: third_party/WebKit/LayoutTests/fast/dom/Window/window-custom-prototype-crash.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/Window/window-custom-prototype-crash.html b/third_party/WebKit/LayoutTests/fast/dom/Window/window-custom-prototype-crash.html
deleted file mode 100644
index 3f4b97edf6b6f1454ff2ae0517eb4ad211014b8b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/Window/window-custom-prototype-crash.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var newPrototype = new Object();
- newPrototype.myNewPrototypeFunction = function() { return "myNewPrototypeFunction"; }
- window.__proto__ = newPrototype;
- window.myNewPrototypeFunction();
-</script>
-If this did not crash the test has succeeded.

Powered by Google App Engine
This is Rietveld 408576698