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

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

Issue 136593002: Move onresize from just Window to Window and elements (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: force rebuild with whitespace Created 6 years, 11 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 | Annotate | Revision Log
« 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <title>HTMLBodyElement and HTMLFrameSetElement event handler test</title> 2 <title>HTMLBodyElement and HTMLFrameSetElement event handler test</title>
3 <script src="../../resources/testharness.js"></script> 3 <script src="../../resources/testharness.js"></script>
4 <script src="../../resources/testharnessreport.js"></script> 4 <script src="../../resources/testharnessreport.js"></script>
5 <script src="script-tests/event-handlers.js"></script> 5 <script src="script-tests/event-handlers.js"></script>
6 <script> 6 <script>
7 // attribute list from WHATWG HTML Living Standard r8239 7 // attribute list from WHATWG HTML Living Standard r8389
8 [ 8 [
9 "onblur", 9 "onblur",
10 "onerror", 10 "onerror",
11 "onfocus", 11 "onfocus",
12 "onload", 12 "onload",
13 "onresize",
13 "onscroll" 14 "onscroll"
14 ].forEach(function(attribute) { 15 ].forEach(function(attribute) {
15 testSet("HTMLBodyElement", attribute); 16 testSet("HTMLBodyElement", attribute);
16 testEnumerate("HTMLBodyElement", attribute); 17 testEnumerate("HTMLBodyElement", attribute);
17 testReflect("HTMLBodyElement", attribute); 18 testReflect("HTMLBodyElement", attribute);
18 testForwardToWindow("HTMLBodyElement", attribute); 19 testForwardToWindow("HTMLBodyElement", attribute);
19 testSet("HTMLFrameSetElement", attribute); 20 testSet("HTMLFrameSetElement", attribute);
20 testEnumerate("HTMLFrameSetElement", attribute); 21 testEnumerate("HTMLFrameSetElement", attribute);
21 testReflect("HTMLFrameSetElement", attribute); 22 testReflect("HTMLFrameSetElement", attribute);
22 testForwardToWindow("HTMLFrameSetElement", attribute); 23 testForwardToWindow("HTMLFrameSetElement", attribute);
23 }); 24 });
24 </script> 25 </script>
25 <div id="log"></div> 26 <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