Index: third_party/WebKit/LayoutTests/imported/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-list-owner-not-dir.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-list-owner-not-dir.html b/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-list-owner-not-dir.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..747d90738b084a179af183f151443698e17c88da |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-list-owner-not-dir.html |
@@ -0,0 +1,58 @@ |
+<!DOCTYPE html> |
+<meta charset="utf-8"> |
+<title>The dir element is not treated specially when calculating list owners</title> |
+<link rel="author" title="Domenic Denicola" href="mailto:d@domenic.me"> |
+<link rel="help" href="https://html.spec.whatwg.org/multipage/semantics.html#ordinal-value"> |
+<link rel="help" href="https://html.spec.whatwg.org/multipage/semantics.html#list-owner"> |
+ |
+<link rel="match" href="grouping-li-reftest-list-owner-not-dir-ref.html"> |
+ |
+<style> |
+ li { |
+ list-style-type: decimal; |
+ } |
+</style> |
+ |
+<p>This test matches if the list displays similar to the following</p> |
+ |
+<pre>1. A |
+2. B |
+3. C |
+4. D |
+5. E |
+ 6. F |
+ 7. G |
+8. H |
+ 9. I |
+ 10. J |
+ 11. K |
+ 12. L</pre> |
+ |
+<hr> |
+ |
+<ol> |
+ <li>A</li> |
+ <li>B</li> |
+ <div> |
+ <li>C</li> |
+ <span> |
+ <li>D</li> |
+ <li>E</li> |
+ </span> |
+ <dir> |
+ <li>F</li> |
+ <li>G</li> |
+ </dir> |
+ </div> |
+ <li>H</li> |
+ <dir> |
+ <li>I</li> |
+ <li> |
+ J |
+ <dir> |
+ <li>K</li> |
+ <li>L</li> |
+ </dir> |
+ </li> |
+ </dir> |
+</ol> |