Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / body-frameset-event-handlers.html
blob5244063f2a2f77f48235d1d75b4d25bd0b2853a8
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 r8389
9 "onblur",
10 "onerror",
11 "onfocus",
12 "onload",
13 "onresize",
14 "onscroll"
15 ].forEach(function(attribute) {
16 testSet("HTMLBodyElement", attribute);
17 testEnumerate("HTMLBodyElement", attribute);
18 testReflect("HTMLBodyElement", attribute);
19 testForwardToWindow("HTMLBodyElement", attribute);
20 testSet("HTMLFrameSetElement", attribute);
21 testEnumerate("HTMLFrameSetElement", attribute);
22 testReflect("HTMLFrameSetElement", attribute);
23 testForwardToWindow("HTMLFrameSetElement", attribute);
24 });
25 </script>
26 <div id="log"></div>