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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/body-frameset-event-handlers.html
diff --git a/LayoutTests/fast/dom/body-frameset-event-handlers.html b/LayoutTests/fast/dom/body-frameset-event-handlers.html
new file mode 100644
index 0000000000000000000000000000000000000000..69c5243c20f3f4d5cd338a6f2b1370d8edd108a2
--- /dev/null
+++ b/LayoutTests/fast/dom/body-frameset-event-handlers.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<title>HTMLBodyElement and HTMLFrameSetElement event handler test</title>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<script src="script-tests/event-handlers.js"></script>
+<script>
+// attribute list from WHATWG HTML Living Standard r8239
+[
+ "onblur",
+ "onerror",
+ "onfocus",
+ "onload",
+ "onscroll"
+].forEach(function(attribute) {
+ testSet("HTMLBodyElement", attribute);
+ testEnumerate("HTMLBodyElement", attribute);
+ testReflect("HTMLBodyElement", attribute);
+ testSet("HTMLFrameSetElement", attribute);
+ testEnumerate("HTMLFrameSetElement", attribute);
+ testReflect("HTMLFrameSetElement", attribute);
+});
+</script>
+<div id="log"></div>
« 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