summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/cascade/sort-by-order-001.xht
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/cascade/sort-by-order-001.xht')
-rw-r--r--testing/web-platform/tests/css/CSS2/cascade/sort-by-order-001.xht46
1 files changed, 46 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/cascade/sort-by-order-001.xht b/testing/web-platform/tests/css/CSS2/cascade/sort-by-order-001.xht
new file mode 100644
index 0000000000..83c43f9975
--- /dev/null
+++ b/testing/web-platform/tests/css/CSS2/cascade/sort-by-order-001.xht
@@ -0,0 +1,46 @@
+<!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>CSS Test: Casdading order - sort by order specified</title>
+
+ <link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
+ <link rel="help" title="6.4.1 Cascading order" href="http://www.w3.org/TR/CSS21/cascade.html#cascading-order" />
+ <link rel="help" href="http://www.w3.org/TR/css-cascade-3/#cascading" />
+ <link rel="help" href="http://www.w3.org/TR/css-cascade-4/#cascading" />
+ <link rel="match" href="../reference/ref-filled-green-100px-square.xht" />
+
+ <meta content="If 2 declarations have the same media, the same importance (normal or !important), the same origin (author, user or user agent) and the same specificity, then the latter specified wins." name="assert" />
+
+ <style type="text/css"><![CDATA[
+ div
+ {
+ height: 100px;
+ width: 100px;
+ }
+
+ div#parent > div /* a=0 b=1 c=0 d=2 -> specificity = 0,1,0,2 */
+ {
+ background-color: red;
+ }
+
+ div > div#child /* a=0 b=1 c=0 d=2 -> specificity = 0,1,0,2 */
+ {
+ background-color: green;
+ }
+ ]]></style>
+
+ </head>
+
+ <body>
+
+ <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
+
+ <div id="parent">
+ <div id="child"></div>
+ </div>
+
+ </body>
+</html>