Bug 1403282 - stylo: Add reftests for whitespace in attr(); r?bz draft
authorManish Goregaokar <manishearth@gmail.com>
Tue, 26 Sep 2017 13:54:22 -0700
changeset 670797 0a282c5b00f4aeb993e8f19ab092e50cae7c9bf4
parent 670796 af9d86b9edf1d51654d2a81ba4bf4fddbb9d0115
child 733309 b1207e99d01d5d077666c5930431e896426ddf58
push id81711
push userbmo:manishearth@gmail.com
push dateTue, 26 Sep 2017 20:55:23 +0000
reviewersbz
bugs1403282
milestone58.0a1
Bug 1403282 - stylo: Add reftests for whitespace in attr(); r?bz MozReview-Commit-ID: IMXFY7bpKGf
layout/reftests/generated-content/attr-whitespace-ref.html
layout/reftests/generated-content/attr-whitespace.xhtml
layout/reftests/generated-content/reftest.list
new file mode 100644
--- /dev/null
+++ b/layout/reftests/generated-content/attr-whitespace-ref.html
@@ -0,0 +1,10 @@
+<!DOCTYPE HTML>
+<html>
+<body>
+<div>HelloWorld</div>
+<div>HelloWorld</div>
+<div>HelloWorld</div>
+<div>Hello</div>
+<div>Hello</div>
+</body>
+</html>
new file mode 100644
--- /dev/null
+++ b/layout/reftests/generated-content/attr-whitespace.xhtml
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
+<head>
+    <title>Whitespace in attributes</title>
+    <link rel="author" title="Manish Goregaokar" href="mailto:manishearth@gmail.com" />
+    <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
+    <link rel="help" href="https://drafts.csswg.org/css-values-3/#attr-notation"/>
+<style>
+@namespace ns url(http://www.example.com/ns);
+/* Spaces within attr() are fine*/
+#a::after {
+
+  content: attr(          
+      data-text  
+
+
+          );
+}
+#b::after {
+
+  content: attr(ns|data-text);
+}
+#c::after {
+
+  content: attr(          
+      ns|data-text  
+
+
+          );
+}
+
+/* No whitespace around the | */
+#d::after {
+
+  content: attr(          
+      ns      |data-text
+
+
+          );
+}
+#e::after {
+
+  content: attr(          
+      ns|       data-text
+
+
+          );
+}
+</style>
+</head>
+<body xmlns:ns="http://www.example.com/ns">
+<div id="a" data-text="World">Hello</div>
+<div id="b" ns:data-text="World">Hello</div>
+<div id="b" ns:data-text="World">Hello</div>
+<div id="d" ns:data-text="World">Hello</div>
+<div id="e" ns:data-text="World">Hello</div>
+</body>
+</html>
--- a/layout/reftests/generated-content/reftest.list
+++ b/layout/reftests/generated-content/reftest.list
@@ -16,8 +16,9 @@ fuzzy-if(OSX==1010,1,10) == positioned-0
 fuzzy-if(OSX==1010,1,10) == quotes-001.xml quotes-001-ref.xml
 fuzzy-if(OSX==1010,1,10) == table-ignoring-whitespace-01.html table-ignoring-whitespace-01-ref.html
 fuzzy-if(OSX==1010,1,10) == table-parts-01.html table-parts-01-ref.html
 == before-style-sharing.html before-style-sharing-ref.html
 == transitive-style-invalidation.html transitive-style-invalidation-ref.html
 == dynamic-content.html dynamic-content-ref.html
 == generated-content-inherit-001.html generated-content-inherit-001-ref.html
 == dynamic-generated-content-inherit-001.html generated-content-inherit-001-ref.html
+== attr-whitespace.xhtml attr-whitespace-ref.html
\ No newline at end of file