Index: third_party/WebKit/LayoutTests/fast/forms/menulist-no-renderer-for-unexpected-children.html |
diff --git a/third_party/WebKit/LayoutTests/fast/forms/menulist-no-renderer-for-unexpected-children.html b/third_party/WebKit/LayoutTests/fast/forms/menulist-no-renderer-for-unexpected-children.html |
deleted file mode 100644 |
index b26f90d3f189fc72bc2f5ece276172128584bbc3..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/forms/menulist-no-renderer-for-unexpected-children.html |
+++ /dev/null |
@@ -1,19 +0,0 @@ |
-<!DOCTYPE html> |
-<script src="../../resources/js-test.js"></script> |
-<select size="2"> |
- <option>PASS</option>FAIL |
-</select> |
-<script> |
-description('Check that a select control does not render children that are not <option> or <optgroup>.'); |
- |
-var select = document.querySelector('select'); |
- |
-var div = select.appendChild(document.createElement('div')); |
-div.innerText = 'FAIL'; |
-div.style.background = 'red'; |
- |
-// innerText uses the render tree, and the "FAIL" text (from either the initial |
-// HTML or the dynamially inserted <div>) should not be in the render tree, thus |
-// not appear. |
-shouldBeEqualToString('select.innerText', ''); |
-</script> |