Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/shadow-trees/text-decoration-001.html |
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/shadow-trees/text-decoration-001.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/shadow-trees/text-decoration-001.html |
deleted file mode 100644 |
index d8def126d64a6c0c9b50677fba0b38e486cef479..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/shadow-trees/text-decoration-001.html |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
- <head> |
- <meta charset="utf-8" > |
- <title>Text Decoration Under Line Test</title> |
- <link rel="match" href="text-decoration-001-ref.html"> |
- <link rel="author" title="Masaya Iseki" href="mailto:iseki.m.aa@gmail.com"> |
- <link rel="help" href="https://www.w3.org/TR/shadow-dom/#text-decoration-property"> |
- <meta name="assert" content="When shadow host has text-decoration, shadow tree is not affected."> |
- </head> |
- <body> |
- <span id="parent" style="text-decoration: underline"> |
- </span> |
- <script> |
- var parent = document.getElementById('parent'); |
- var shadow = parent.attachShadow({mode: 'open'}); |
- var child = document.createElement('span'); |
- child.textContent = "if NOT underlined, it is success."; |
- shadow.appendChild(child); |
- </script> |
- </body> |
-</html> |