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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/js/observe/observe-globals.html

Issue 1506813002: LayoutTests: remove tests for Object.observe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../../resources/js-test.js"></script>
3 <script>
4 jsTestIsAsync = true;
5 description("Calling Object.observe on the global object should throw");
6 function runTest() {
7 shouldThrow("Object.observe(window)");
8 shouldThrow("Object.observe(this)");
9 shouldThrow("Object.observe(frames[0])");
10 finishJSTest();
11 }
12 </script>
13 <iframe onload="runTest()"></iframe>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698