Index: LayoutTests/fast/dom/shadow/shadowdom-for-textarea-with-placeholder.html |
diff --git a/LayoutTests/fast/dom/shadow/shadowdom-for-textarea-with-placeholder.html b/LayoutTests/fast/dom/shadow/shadowdom-for-textarea-with-placeholder.html |
deleted file mode 100644 |
index b1dbc670c641513102c759938c06d07787ca3144..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/shadow/shadowdom-for-textarea-with-placeholder.html |
+++ /dev/null |
@@ -1,21 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<link rel="stylesheet" href="resources/replaced-element-styles.css" type="text/css"> |
-</head> |
-<body> |
- |
-<textarea id="host" rows="4" cols="30" placeholder="This is a placeholder text."></textarea> |
- |
-<script> |
-if (window.internals) |
- internals.settings.setAuthorShadowDOMForAnyElementEnabled(true); |
- |
-var shadowRoot1 = host.createShadowRoot(); |
-shadowRoot1.appendChild(document.createTextNode('before')); |
-shadowRoot1.appendChild(document.createElement('shadow')); |
-shadowRoot1.appendChild(document.createTextNode('after')); |
-</script> |
- |
-</body> |
-</html> |