Index: third_party/WebKit/LayoutTests/fast/dom/shadow/radionodelist-in-shadow.html |
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/radionodelist-in-shadow.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/radionodelist-in-shadow.html |
deleted file mode 100644 |
index 64fa74b35579859c9e313061485e84e5017245d2..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/radionodelist-in-shadow.html |
+++ /dev/null |
@@ -1,18 +0,0 @@ |
-<!DOCTYPE html> |
-<body> |
-<script src="../../../resources/testharness.js"></script> |
-<script src="../../../resources/testharnessreport.js"></script> |
-<div id="log"></div> |
-<script> |
-test(function() { |
- var host = document.createElement('div'); |
- var root = host.attachShadow({mode: 'open'}); |
- root.innerHTML = '<form id="f1"><input name="n"><select name="n"></select></form>'; |
- assert_equals(root.firstChild.elements.n.length, 2); |
- assert_equals(root.firstChild.n.length, 2); |
- |
- document.body.appendChild(host); |
- assert_equals(root.firstChild.elements.n.length, 2); |
- assert_equals(root.firstChild.n.length, 2); |
-}, 'RadioNodeList should work in Shadow DOM.'); |
-</script> |