OLD | NEW |
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 Loading... |
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> |
OLD | NEW |