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

Side by Side Diff: LayoutTests/fast/dom/body-frameset-event-handlers.html

Issue 37283002: Drop NotEnumerable for the on* event handler IDL attributes (again) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rm redundant test Created 7 years, 2 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
« no previous file with comments | « no previous file | LayoutTests/fast/dom/body-frameset-event-handlers-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <title>HTMLBodyElement and HTMLFrameSetElement event handler test</title>
3 <script src="../../resources/testharness.js"></script>
4 <script src="../../resources/testharnessreport.js"></script>
5 <script src="script-tests/event-handlers.js"></script>
6 <script>
7 // attribute list from WHATWG HTML Living Standard r8239
8 [
9 "onblur",
10 "onerror",
11 "onfocus",
12 "onload",
13 "onscroll"
14 ].forEach(function(attribute) {
15 testSet("HTMLBodyElement", attribute);
16 testEnumerate("HTMLBodyElement", attribute);
17 testReflect("HTMLBodyElement", attribute);
18 testSet("HTMLFrameSetElement", attribute);
19 testEnumerate("HTMLFrameSetElement", attribute);
20 testReflect("HTMLFrameSetElement", attribute);
21 });
22 </script>
23 <div id="log"></div>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/body-frameset-event-handlers-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698