Index: LayoutTests/fast/dom/shadow/shadowdom-for-input-button-expected.html |
diff --git a/LayoutTests/fast/dom/shadow/shadowdom-for-input-button-expected.html b/LayoutTests/fast/dom/shadow/shadowdom-for-input-button-expected.html |
deleted file mode 100644 |
index 094063d213fa60c72465f9964dea47efd85d2e1d..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/shadow/shadowdom-for-input-button-expected.html |
+++ /dev/null |
@@ -1,38 +0,0 @@ |
-<!DOCTYPE html> |
-<body> |
- |
-<p>1. If an input element has a shadow tree containing a <shadow> element, it should get the value text of the input element.</p> |
-<div id="shadow"> |
-<input value="[Foo]" type="button"><input type="button" value="[]"> |
-<input value="[Foo]" type="reset"><input type="reset" value="[Reset]"> |
-<input value="[Foo]" type="submit"><input type="submit" value="[Submit]"> |
-</div> |
- |
-<p>2. If an author shadow tree contains no <shadow> element, the button value should not be rendered.</p> |
-<div id="no-shadow"> |
-<input type="button" value="[]"><input type="button" value="[]"> |
-<input type="reset" value="[]"><input type="reset" value="[]"> |
-<input type="submit" value="[]"><input type="submit" value="[]"> |
-</div> |
- |
-<p>3. If an author shadow tree contains only <shadow> element, the button should be rendered as it didn't have shadow trees.</p> |
-<div id="only-shadow"> |
-<input type="button" value="Foo"><input type="button"> |
-<input type="reset" value="Foo"><input type="reset"> |
-<input type="submit" value="Foo"><input type="submit"> |
-</div> |
- |
-<p>4. Complex shadow tree.</p> |
-<div id="complex-shadow"> |
-<style> |
-button { -webkit-appearance: push-button; } |
-</style> |
-<button>prefix <span style="color:red;">♥</span>Foo suffix</button> |
-<button>prefix <span style="color:red;">♥</span> suffix</button> |
-<button>prefix <span style="color:red;">♥</span>Foo suffix</button> |
-<button>prefix <span style="color:red;">♥</span>Reset suffix</button> |
-<button>prefix <span style="color:red;">♥</span>Foo suffix</button> |
-<button>prefix <span style="color:red;">♥</span>Submit suffix</button> |
-</div> |
- |
-</body> |