Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(314)

Unified Diff: third_party/WebKit/LayoutTests/css3/selectors3/xhtml/css3-modsel-27a.xml

Issue 2588643004: Allow positional selectors to match elements without a parent. (Closed)
Patch Set: Allow positional selectors to match elements without a parent. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/css3/selectors3/xhtml/css3-modsel-27a.xml
diff --git a/third_party/WebKit/LayoutTests/css3/selectors3/xhtml/css3-modsel-27a.xml b/third_party/WebKit/LayoutTests/css3/selectors3/xhtml/css3-modsel-27a.xml
deleted file mode 100644
index c667e304b7ae835197b5100302a95da3ebda2df2..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/css3/selectors3/xhtml/css3-modsel-27a.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Impossible rules (:root:first-child, etc)</title>
- <style type="text/css"><![CDATA[
-:root:first-child { background-color: red; }
-:root:last-child { background-color: red; }
-:root:only-child { background-color: red; }
-:root:nth-child(1) { background-color: red; }
-:root:nth-child(n) { background-color: red; }
-:root:nth-last-child(1) { background-color: red; }
-:root:nth-last-child(n) { background-color: red; }
-:root:first-of-type { background-color: red; }
-:root:last-of-type { background-color: red; }
-:root:only-of-type { background-color: red; }
-:root:nth-of-type(1) { background-color: red; }
-:root:nth-of-type(n) { background-color: red; }
-:root:nth-last-of-type(1) { background-color: red; }
-:root:nth-last-of-type(n) { background-color: red; }
-p { color: green; }]]></style>
- <link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
- <link rel="prev" href="css3-modsel-27.xml" title=":root pseudo-class"/>
- <link rel="next" href="css3-modsel-27b.xml" title="Impossible rules (* html, * :root)"/>
- <link rel="last" href="css3-modsel-d4.xml" title="Dynamic updating of :first-child and :last-child"/>
- <link rel="up" href="./index.html"/>
- <link rel="top" href="../../index.html"/>
- </head>
- <body>
-<p>This line should be green (there should be no red on this page).</p>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698