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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/html/browsers/the-window-object/window-named-properties.html

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <meta charset=utf-8> 2 <meta charset=utf-8>
3 <title>Changes to named properties of the window object</title> 3 <title>Changes to named properties of the window object</title>
4 <link rel="author" title="Ms2ger" href="ms2ger@gmail.com"> 4 <link rel="author" title="Ms2ger" href="ms2ger@gmail.com">
5 <link rel="author" title="Boris Zbarsky" href="bzbarsky@mit.edu"> 5 <link rel="author" title="Boris Zbarsky" href="bzbarsky@mit.edu">
6 <link rel="help" href="https://html.spec.whatwg.org/multipage/#window"> 6 <link rel="help" href="https://html.spec.whatwg.org/multipage/#window">
7 <link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-window-namedi tem"> 7 <link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-window-namedi tem">
8 <link rel="help" href="https://heycam.github.io/webidl/#named-properties-object" > 8 <link rel="help" href="https://heycam.github.io/webidl/#named-properties-object" >
9 <script src="../../../../../resources/testharness.js"></script> 9 <script src="../../../../../resources/testharness.js"></script>
10 <script src="../../../../../resources/testharnessreport.js"></script> 10 <script src="../../../../../resources/testharnessreport.js"></script>
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 }); 68 });
69 t.done(); 69 t.done();
70 t2.step(function() { 70 t2.step(function() {
71 assert_false("bar" in window, "bar still in window"); 71 assert_false("bar" in window, "bar still in window");
72 assert_equals(window["bar"], undefined); 72 assert_equals(window["bar"], undefined);
73 }); 73 });
74 t2.done(); 74 t2.done();
75 }; 75 };
76 }); 76 });
77 </script> 77 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698