Bug 1258916 part 1 - Ensure files are written with unix line ending. r=dbaron draft
authorXidorn Quan <quanxunzhen@gmail.com>
Wed, 23 Mar 2016 18:00:39 +0800
changeset 350722 6ec18f9b0404fb6c3b203d57cee5e34ba31f5194
parent 350721 81d9e7111e42623ce237d7c4db239936f9cf96d3
child 350723 f66bac4e7a794c68a630d84c1cf30751f2b0eea0
push id15401
push userxquan@mozilla.com
push dateThu, 14 Apr 2016 07:33:24 +0000
reviewersdbaron
bugs1258916
milestone48.0a1
Bug 1258916 part 1 - Ensure files are written with unix line ending. r=dbaron MozReview-Commit-ID: 3TzcUyvVTyp
layout/reftests/w3c-css/import-tests.py
layout/reftests/w3c-css/received/import.log
layout/reftests/w3c-css/received/reftest.list
--- a/layout/reftests/w3c-css/import-tests.py
+++ b/layout/reftests/w3c-css/import-tests.py
@@ -172,17 +172,17 @@ def load_flags_for(fn, spec):
         name = meta.getAttribute("name")
         if name == "flags":
             gTestFlags[destname] = meta.getAttribute("content").split()
 
 def get_document_for(fn):
     document = None # an xml.dom.minidom document
     if fn.endswith(".htm") or fn.endswith(".html"):
         # An HTML file
-        f = open(fn, "r")
+        f = open(fn, "rb")
         parser = html5lib.HTMLParser(tree=html5lib.treebuilders.getTreeBuilder("dom"))
         document = parser.parse(f)
         f.close()
     else:
         # An XML file
         document = xml.dom.minidom.parse(fn)
     return document
 
@@ -270,27 +270,27 @@ def setup_paths():
     for relPath in gSubtrees:
         newSubtrees[len(gSubtrees):] = [os.path.join(gSrcPath, relPath)]
     gSubtrees = newSubtrees
 
 def setup_log():
     global gLog
     # Since we're going to commit the tests, we should also commit
     # information about where they came from.
-    gLog = open(os.path.join(gDestPath, "import.log"), "w")
+    gLog = open(os.path.join(gDestPath, "import.log"), "wb")
 
 def read_fail_and_skip_list():
     global gFailList, gSkipList
     dirname = os.path.realpath(__file__).split(os.path.sep)
     dirname = os.path.sep.join(dirname[:len(dirname)-1])
-    failListFile = open(os.path.join(dirname, "failures.list"), "r")
+    failListFile = open(os.path.join(dirname, "failures.list"), "rb")
     gFailList = [x for x in [x.lstrip().rstrip() for x in failListFile] if bool(x)
                  and not x.startswith("#")]
     failListFile.close()
-    skipListFile = open(os.path.join(dirname, "skip.list"), "r")
+    skipListFile = open(os.path.join(dirname, "skip.list"), "rb")
     gSkipList = [x for x in [x.lstrip().rstrip() for x in skipListFile]
                  if bool(x) and not x.startswith("#")]
     skipListFile.close()
 
 def main():
     global gDestPath, gLog, gTestfiles, gTestFlags, gFailList, gSkipList
     read_options()
     setup_paths()
@@ -298,17 +298,17 @@ def main():
     setup_log()
     write_log_header()
     remove_existing_dirs()
     populate_test_files()
 
     for t in gTestfiles:
         add_test_items(t, spec=None)
 
-    listfile = open(os.path.join(gDestPath, "reftest.list"), "w")
+    listfile = open(os.path.join(gDestPath, "reftest.list"), "wb")
     listfile.write("# THIS FILE IS AUTOGENERATED BY {0}\n# DO NOT EDIT!\n".format(os.path.basename(__file__)))
     lastDefaultPreferences = None
     for test in tests:
         defaultPreferences = gDefaultPreferences.get(test[1].split("/")[0], None)
         if defaultPreferences != lastDefaultPreferences:
             if defaultPreferences is None:
                 listfile.write("\ndefault-preferences\n\n")
             else:
--- a/layout/reftests/w3c-css/received/import.log
+++ b/layout/reftests/w3c-css/received/import.log
@@ -1,165 +1,165 @@
-Importing revision: 82703bd84461001c911171f54aa46373b9301408
-from repository: https://hg.csswg.org/test
-Importing css-conditional-3/at-media-whitespace-optional-001.html to css-conditional-3/at-media-whitespace-optional-001.html
-Importing css-conditional-3/reference/background-lime.html to css-conditional-3/background-lime.html
-Importing css-conditional-3/at-media-whitespace-optional-002.html to css-conditional-3/at-media-whitespace-optional-002.html
-Importing css-conditional-3/at-supports-001.html to css-conditional-3/at-supports-001.html
-Importing css-conditional-3/at-supports-001-ref.html to css-conditional-3/at-supports-001-ref.html
-Importing css-conditional-3/at-supports-002.html to css-conditional-3/at-supports-002.html
-Importing css-conditional-3/at-supports-003.html to css-conditional-3/at-supports-003.html
-Importing css-conditional-3/at-supports-004.html to css-conditional-3/at-supports-004.html
-Importing css-conditional-3/at-supports-005.html to css-conditional-3/at-supports-005.html
-Importing css-conditional-3/at-supports-006.html to css-conditional-3/at-supports-006.html
-Importing css-conditional-3/at-supports-007.html to css-conditional-3/at-supports-007.html
-Importing css-conditional-3/at-supports-008.html to css-conditional-3/at-supports-008.html
-Importing css-conditional-3/at-supports-009.html to css-conditional-3/at-supports-009.html
-Importing css-conditional-3/at-supports-010.html to css-conditional-3/at-supports-010.html
-Importing css-conditional-3/at-supports-011.html to css-conditional-3/at-supports-011.html
-Importing css-conditional-3/at-supports-012.html to css-conditional-3/at-supports-012.html
-Importing css-conditional-3/at-supports-013.html to css-conditional-3/at-supports-013.html
-Importing css-conditional-3/at-supports-014.html to css-conditional-3/at-supports-014.html
-Importing css-conditional-3/at-supports-015.html to css-conditional-3/at-supports-015.html
-Importing css-conditional-3/at-supports-016.html to css-conditional-3/at-supports-016.html
-Importing css-conditional-3/at-supports-017.html to css-conditional-3/at-supports-017.html
-Importing css-conditional-3/at-supports-018.html to css-conditional-3/at-supports-018.html
-Importing css-conditional-3/at-supports-019.html to css-conditional-3/at-supports-019.html
-Importing css-conditional-3/at-supports-020.html to css-conditional-3/at-supports-020.html
-Importing css-conditional-3/at-supports-021.html to css-conditional-3/at-supports-021.html
-Importing css-conditional-3/at-supports-022.html to css-conditional-3/at-supports-022.html
-Importing css-conditional-3/at-supports-023.html to css-conditional-3/at-supports-023.html
-Importing css-conditional-3/at-supports-024.html to css-conditional-3/at-supports-024.html
-Importing css-conditional-3/at-supports-025.html to css-conditional-3/at-supports-025.html
-Importing css-conditional-3/at-supports-026.html to css-conditional-3/at-supports-026.html
-Importing css-conditional-3/at-supports-027.html to css-conditional-3/at-supports-027.html
-Importing css-conditional-3/at-supports-027-ref.html to css-conditional-3/at-supports-027-ref.html
-Importing css-conditional-3/at-supports-028.html to css-conditional-3/at-supports-028.html
-Importing css-conditional-3/at-supports-029.html to css-conditional-3/at-supports-029.html
-Importing css-conditional-3/at-supports-030.html to css-conditional-3/at-supports-030.html
-Importing css-conditional-3/at-supports-031.html to css-conditional-3/at-supports-031.html
-Importing css-conditional-3/at-supports-032.html to css-conditional-3/at-supports-032.html
-Importing css-conditional-3/at-supports-033.html to css-conditional-3/at-supports-033.html
-Importing css-conditional-3/at-supports-034.html to css-conditional-3/at-supports-034.html
-Importing css-conditional-3/at-supports-035.html to css-conditional-3/at-supports-035.html
-Importing css-conditional-3/at-supports-036.html to css-conditional-3/at-supports-036.html
-Importing css-conditional-3/at-supports-037.html to css-conditional-3/at-supports-037.html
-Importing css-conditional-3/at-supports-038.html to css-conditional-3/at-supports-038.html
-Importing css-conditional-3/at-supports-039.html to css-conditional-3/at-supports-039.html
-Importing css-namespaces-3/prefix-001.xml to css-namespaces-3/prefix-001.xml
-Importing css-namespaces-3/support/fail.css to css-namespaces-3/support/fail.css
-Importing css-namespaces-3/support/scope-002a.css to css-namespaces-3/support/scope-002a.css
-Importing css-namespaces-3/support/scope-002b.css to css-namespaces-3/support/scope-002b.css
-Importing css-namespaces-3/support/syntax-007.css to css-namespaces-3/support/syntax-007.css
-Importing css-namespaces-3/reftest/ref-lime-1.xml to css-namespaces-3/ref-lime-1.xml
-Importing css-namespaces-3/prefix-002.xml to css-namespaces-3/prefix-002.xml
-Importing css-namespaces-3/prefix-003.xml to css-namespaces-3/prefix-003.xml
-Importing css-namespaces-3/reftest/ref-lime-1-generic.xml to css-namespaces-3/ref-lime-1-generic.xml
-Importing css-namespaces-3/prefix-004.xml to css-namespaces-3/prefix-004.xml
-Importing css-namespaces-3/reftest/ref-lime-2-generic.xml to css-namespaces-3/ref-lime-2-generic.xml
-Importing css-namespaces-3/prefix-005.xml to css-namespaces-3/prefix-005.xml
-Importing css-namespaces-3/prefix-006.xml to css-namespaces-3/prefix-006.xml
-Importing css-namespaces-3/reftest/ref-lime-2.xml to css-namespaces-3/ref-lime-2.xml
-Importing css-namespaces-3/scope-001.xml to css-namespaces-3/scope-001.xml
-Importing css-namespaces-3/scope-002.xml to css-namespaces-3/scope-002.xml
-Importing css-namespaces-3/syntax-001.xml to css-namespaces-3/syntax-001.xml
-Importing css-namespaces-3/reftest/ref-lime-1-block.xml to css-namespaces-3/ref-lime-1-block.xml
-Importing css-namespaces-3/syntax-002.xml to css-namespaces-3/syntax-002.xml
-Importing css-namespaces-3/syntax-003.xml to css-namespaces-3/syntax-003.xml
-Importing css-namespaces-3/reftest/ref-lime-5.xml to css-namespaces-3/ref-lime-5.xml
-Importing css-namespaces-3/syntax-004.xml to css-namespaces-3/syntax-004.xml
-Importing css-namespaces-3/syntax-005.xml to css-namespaces-3/syntax-005.xml
-Importing css-namespaces-3/syntax-006.xml to css-namespaces-3/syntax-006.xml
-Importing css-namespaces-3/syntax-007.xml to css-namespaces-3/syntax-007.xml
-Importing css-namespaces-3/syntax-008.xml to css-namespaces-3/syntax-008.xml
-Importing css-namespaces-3/syntax-009.xml to css-namespaces-3/syntax-009.xml
-Importing css-namespaces-3/syntax-010.xml to css-namespaces-3/syntax-010.xml
-Importing css-namespaces-3/reftest/ref-lime-3.xml to css-namespaces-3/ref-lime-3.xml
-Importing css-namespaces-3/syntax-011.xml to css-namespaces-3/syntax-011.xml
-Importing css-namespaces-3/reftest/ref-lime-6.xml to css-namespaces-3/ref-lime-6.xml
-Importing css-namespaces-3/syntax-012.xml to css-namespaces-3/syntax-012.xml
-Importing css-namespaces-3/syntax-013.xml to css-namespaces-3/syntax-013.xml
-Importing css-namespaces-3/syntax-014.xml to css-namespaces-3/syntax-014.xml
-Importing css-namespaces-3/syntax-015.xml to css-namespaces-3/syntax-015.xml
-Importing css-values-3/attr-color-invalid-cast.html to css-values-3/attr-color-invalid-cast.html
-Importing css-values-3/support/1x1-green.png to css-values-3/support/1x1-green.png
-Importing css-values-3/support/1x1-lime.png to css-values-3/support/1x1-lime.png
-Importing css-values-3/support/1x1-maroon.png to css-values-3/support/1x1-maroon.png
-Importing css-values-3/support/1x1-navy.png to css-values-3/support/1x1-navy.png
-Importing css-values-3/support/1x1-red.png to css-values-3/support/1x1-red.png
-Importing css-values-3/support/1x1-white.png to css-values-3/support/1x1-white.png
-Importing css-values-3/support/60x60-gg-rr.png to css-values-3/support/60x60-gg-rr.png
-Importing css-values-3/support/60x60-green.png to css-values-3/support/60x60-green.png
-Importing css-values-3/support/60x60-red.png to css-values-3/support/60x60-red.png
-Importing css-values-3/support/a-green.css to css-values-3/support/a-green.css
-Importing css-values-3/support/b-green.css to css-values-3/support/b-green.css
-Importing css-values-3/support/c-red.css to css-values-3/support/c-red.css
-Importing css-values-3/support/cat.png to css-values-3/support/cat.png
-Importing css-values-3/support/import-green.css to css-values-3/support/import-green.css
-Importing css-values-3/support/import-red.css to css-values-3/support/import-red.css
-Importing css-values-3/support/pattern-grg-rgr-grg.png to css-values-3/support/pattern-grg-rgr-grg.png
-Importing css-values-3/support/pattern-grg-rrg-rgg.png to css-values-3/support/pattern-grg-rrg-rgg.png
-Importing css-values-3/support/pattern-rgr-grg-rgr.png to css-values-3/support/pattern-rgr-grg-rgr.png
-Importing css-values-3/support/pattern-tr.png to css-values-3/support/pattern-tr.png
-Importing css-values-3/support/README to css-values-3/support/README
-Importing css-values-3/support/ruler-h-50%.png to css-values-3/support/ruler-h-50%.png
-Importing css-values-3/support/ruler-h-50px.png to css-values-3/support/ruler-h-50px.png
-Importing css-values-3/support/ruler-v-100px.png to css-values-3/support/ruler-v-100px.png
-Importing css-values-3/support/ruler-v-50px.png to css-values-3/support/ruler-v-50px.png
-Importing css-values-3/support/square-purple.png to css-values-3/support/square-purple.png
-Importing css-values-3/support/square-teal.png to css-values-3/support/square-teal.png
-Importing css-values-3/support/square-white.png to css-values-3/support/square-white.png
-Importing css-values-3/support/swatch-blue.png to css-values-3/support/swatch-blue.png
-Importing css-values-3/support/swatch-green.png to css-values-3/support/swatch-green.png
-Importing css-values-3/support/swatch-lime.png to css-values-3/support/swatch-lime.png
-Importing css-values-3/support/swatch-orange.png to css-values-3/support/swatch-orange.png
-Importing css-values-3/support/swatch-red.png to css-values-3/support/swatch-red.png
-Importing css-values-3/support/swatch-teal.png to css-values-3/support/swatch-teal.png
-Importing css-values-3/support/swatch-white.png to css-values-3/support/swatch-white.png
-Importing css-values-3/support/swatch-yellow.png to css-values-3/support/swatch-yellow.png
-Importing css-values-3/support/test-bl.png to css-values-3/support/test-bl.png
-Importing css-values-3/support/test-br.png to css-values-3/support/test-br.png
-Importing css-values-3/support/test-inner-half-size.png to css-values-3/support/test-inner-half-size.png
-Importing css-values-3/support/test-outer.png to css-values-3/support/test-outer.png
-Importing css-values-3/support/test-tl.png to css-values-3/support/test-tl.png
-Importing css-values-3/support/test-tr.png to css-values-3/support/test-tr.png
-Importing css-values-3/support/support/README to css-values-3/support/support/README
-Importing css-values-3/support/support/swatch-green.png to css-values-3/support/support/swatch-green.png
-Importing css-values-3/support/support/swatch-red.png to css-values-3/support/support/swatch-red.png
-Importing css-values-3/reference/200-200-green.html to css-values-3/200-200-green.html
-Importing css-values-3/attr-color-invalid-fallback.html to css-values-3/attr-color-invalid-fallback.html
-Importing css-values-3/attr-color-valid.html to css-values-3/attr-color-valid.html
-Importing css-values-3/attr-invalid-type-001.html to css-values-3/attr-invalid-type-001.html
-Importing css-values-3/attr-invalid-type-002.html to css-values-3/attr-invalid-type-002.html
-Importing css-values-3/attr-invalid-type-003.html to css-values-3/attr-invalid-type-003.html
-Importing css-values-3/attr-length-invalid-cast.html to css-values-3/attr-length-invalid-cast.html
-Importing css-values-3/attr-length-invalid-fallback.html to css-values-3/attr-length-invalid-fallback.html
-Importing css-values-3/attr-length-valid-zero-nofallback.html to css-values-3/attr-length-valid-zero-nofallback.html
-Importing css-values-3/attr-length-valid-zero.html to css-values-3/attr-length-valid-zero.html
-Importing css-values-3/attr-length-valid.html to css-values-3/attr-length-valid.html
-Importing css-values-3/attr-px-invalid-cast.html to css-values-3/attr-px-invalid-cast.html
-Importing css-values-3/attr-px-invalid-fallback.html to css-values-3/attr-px-invalid-fallback.html
-Importing css-values-3/attr-px-valid.html to css-values-3/attr-px-valid.html
-Importing css-values-3/calc-in-calc.html to css-values-3/calc-in-calc.html
-Importing css-values-3/reference/all-green.html to css-values-3/all-green.html
-Importing css-values-3/calc-in-media-queries-001.html to css-values-3/calc-in-media-queries-001.html
-Importing css-values-3/calc-in-media-queries-002.html to css-values-3/calc-in-media-queries-002.html
-Importing css-values-3/calc-invalid-range-clamping.html to css-values-3/calc-invalid-range-clamping.html
-Importing css-values-3/calc-parenthesis-stack.html to css-values-3/calc-parenthesis-stack.html
-Importing css-values-3/ch-unit-001.html to css-values-3/ch-unit-001.html
-Importing css-values-3/reference/ch-unit-001-ref.html to css-values-3/ch-unit-001-ref.html
-Importing css-values-3/initial-background-color.html to css-values-3/initial-background-color.html
-Importing css-values-3/vh-calc-support-pct.html to css-values-3/vh-calc-support-pct.html
-Importing css-values-3/vh-calc-support.html to css-values-3/vh-calc-support.html
-Importing css-values-3/vh-em-inherit.html to css-values-3/vh-em-inherit.html
-Importing css-values-3/vh-inherit.html to css-values-3/vh-inherit.html
-Importing css-values-3/vh-interpolate-pct.html to css-values-3/vh-interpolate-pct.html
-Importing css-values-3/vh-interpolate-px.html to css-values-3/vh-interpolate-px.html
-Importing css-values-3/vh-interpolate-vh.html to css-values-3/vh-interpolate-vh.html
-Importing css-values-3/vh-support-atviewport.html to css-values-3/vh-support-atviewport.html
-Importing css-values-3/vh-support-margin.html to css-values-3/vh-support-margin.html
-Importing css-values-3/vh-support-transform-origin.html to css-values-3/vh-support-transform-origin.html
-Importing css-values-3/vh-support-transform-translate.html to css-values-3/vh-support-transform-translate.html
-Importing css-values-3/vh-support.html to css-values-3/vh-support.html
-Importing css-values-3/vh-zero-support.html to css-values-3/vh-zero-support.html
-Importing css-values-3/vh_not_refreshing_on_chrome.html to css-values-3/vh_not_refreshing_on_chrome.html
-Importing css-values-3/reference/vh_not_refreshing_on_chrome-ref.html to css-values-3/vh_not_refreshing_on_chrome-ref.html
-Importing css-values-3/vh_not_refreshing_on_chrome_iframe.html to css-values-3/vh_not_refreshing_on_chrome_iframe.html
+Importing revision: bbc09e4c2581d270eb7b8b9704032d2b745c20e1
+from repository: https://hg.csswg.org/test
+Importing css-conditional-3/at-media-whitespace-optional-001.html to css-conditional-3/at-media-whitespace-optional-001.html
+Importing css-conditional-3/reference/background-lime.html to css-conditional-3/background-lime.html
+Importing css-conditional-3/at-media-whitespace-optional-002.html to css-conditional-3/at-media-whitespace-optional-002.html
+Importing css-conditional-3/at-supports-001.html to css-conditional-3/at-supports-001.html
+Importing css-conditional-3/at-supports-001-ref.html to css-conditional-3/at-supports-001-ref.html
+Importing css-conditional-3/at-supports-002.html to css-conditional-3/at-supports-002.html
+Importing css-conditional-3/at-supports-003.html to css-conditional-3/at-supports-003.html
+Importing css-conditional-3/at-supports-004.html to css-conditional-3/at-supports-004.html
+Importing css-conditional-3/at-supports-005.html to css-conditional-3/at-supports-005.html
+Importing css-conditional-3/at-supports-006.html to css-conditional-3/at-supports-006.html
+Importing css-conditional-3/at-supports-007.html to css-conditional-3/at-supports-007.html
+Importing css-conditional-3/at-supports-008.html to css-conditional-3/at-supports-008.html
+Importing css-conditional-3/at-supports-009.html to css-conditional-3/at-supports-009.html
+Importing css-conditional-3/at-supports-010.html to css-conditional-3/at-supports-010.html
+Importing css-conditional-3/at-supports-011.html to css-conditional-3/at-supports-011.html
+Importing css-conditional-3/at-supports-012.html to css-conditional-3/at-supports-012.html
+Importing css-conditional-3/at-supports-013.html to css-conditional-3/at-supports-013.html
+Importing css-conditional-3/at-supports-014.html to css-conditional-3/at-supports-014.html
+Importing css-conditional-3/at-supports-015.html to css-conditional-3/at-supports-015.html
+Importing css-conditional-3/at-supports-016.html to css-conditional-3/at-supports-016.html
+Importing css-conditional-3/at-supports-017.html to css-conditional-3/at-supports-017.html
+Importing css-conditional-3/at-supports-018.html to css-conditional-3/at-supports-018.html
+Importing css-conditional-3/at-supports-019.html to css-conditional-3/at-supports-019.html
+Importing css-conditional-3/at-supports-020.html to css-conditional-3/at-supports-020.html
+Importing css-conditional-3/at-supports-021.html to css-conditional-3/at-supports-021.html
+Importing css-conditional-3/at-supports-022.html to css-conditional-3/at-supports-022.html
+Importing css-conditional-3/at-supports-023.html to css-conditional-3/at-supports-023.html
+Importing css-conditional-3/at-supports-024.html to css-conditional-3/at-supports-024.html
+Importing css-conditional-3/at-supports-025.html to css-conditional-3/at-supports-025.html
+Importing css-conditional-3/at-supports-026.html to css-conditional-3/at-supports-026.html
+Importing css-conditional-3/at-supports-027.html to css-conditional-3/at-supports-027.html
+Importing css-conditional-3/at-supports-027-ref.html to css-conditional-3/at-supports-027-ref.html
+Importing css-conditional-3/at-supports-028.html to css-conditional-3/at-supports-028.html
+Importing css-conditional-3/at-supports-029.html to css-conditional-3/at-supports-029.html
+Importing css-conditional-3/at-supports-030.html to css-conditional-3/at-supports-030.html
+Importing css-conditional-3/at-supports-031.html to css-conditional-3/at-supports-031.html
+Importing css-conditional-3/at-supports-032.html to css-conditional-3/at-supports-032.html
+Importing css-conditional-3/at-supports-033.html to css-conditional-3/at-supports-033.html
+Importing css-conditional-3/at-supports-034.html to css-conditional-3/at-supports-034.html
+Importing css-conditional-3/at-supports-035.html to css-conditional-3/at-supports-035.html
+Importing css-conditional-3/at-supports-036.html to css-conditional-3/at-supports-036.html
+Importing css-conditional-3/at-supports-037.html to css-conditional-3/at-supports-037.html
+Importing css-conditional-3/at-supports-038.html to css-conditional-3/at-supports-038.html
+Importing css-conditional-3/at-supports-039.html to css-conditional-3/at-supports-039.html
+Importing css-namespaces-3/prefix-001.xml to css-namespaces-3/prefix-001.xml
+Importing css-namespaces-3/support/fail.css to css-namespaces-3/support/fail.css
+Importing css-namespaces-3/support/scope-002a.css to css-namespaces-3/support/scope-002a.css
+Importing css-namespaces-3/support/scope-002b.css to css-namespaces-3/support/scope-002b.css
+Importing css-namespaces-3/support/syntax-007.css to css-namespaces-3/support/syntax-007.css
+Importing css-namespaces-3/reftest/ref-lime-1.xml to css-namespaces-3/ref-lime-1.xml
+Importing css-namespaces-3/prefix-002.xml to css-namespaces-3/prefix-002.xml
+Importing css-namespaces-3/prefix-003.xml to css-namespaces-3/prefix-003.xml
+Importing css-namespaces-3/reftest/ref-lime-1-generic.xml to css-namespaces-3/ref-lime-1-generic.xml
+Importing css-namespaces-3/prefix-004.xml to css-namespaces-3/prefix-004.xml
+Importing css-namespaces-3/reftest/ref-lime-2-generic.xml to css-namespaces-3/ref-lime-2-generic.xml
+Importing css-namespaces-3/prefix-005.xml to css-namespaces-3/prefix-005.xml
+Importing css-namespaces-3/prefix-006.xml to css-namespaces-3/prefix-006.xml
+Importing css-namespaces-3/reftest/ref-lime-2.xml to css-namespaces-3/ref-lime-2.xml
+Importing css-namespaces-3/scope-001.xml to css-namespaces-3/scope-001.xml
+Importing css-namespaces-3/scope-002.xml to css-namespaces-3/scope-002.xml
+Importing css-namespaces-3/syntax-001.xml to css-namespaces-3/syntax-001.xml
+Importing css-namespaces-3/reftest/ref-lime-1-block.xml to css-namespaces-3/ref-lime-1-block.xml
+Importing css-namespaces-3/syntax-002.xml to css-namespaces-3/syntax-002.xml
+Importing css-namespaces-3/syntax-003.xml to css-namespaces-3/syntax-003.xml
+Importing css-namespaces-3/reftest/ref-lime-5.xml to css-namespaces-3/ref-lime-5.xml
+Importing css-namespaces-3/syntax-004.xml to css-namespaces-3/syntax-004.xml
+Importing css-namespaces-3/syntax-005.xml to css-namespaces-3/syntax-005.xml
+Importing css-namespaces-3/syntax-006.xml to css-namespaces-3/syntax-006.xml
+Importing css-namespaces-3/syntax-007.xml to css-namespaces-3/syntax-007.xml
+Importing css-namespaces-3/syntax-008.xml to css-namespaces-3/syntax-008.xml
+Importing css-namespaces-3/syntax-009.xml to css-namespaces-3/syntax-009.xml
+Importing css-namespaces-3/syntax-010.xml to css-namespaces-3/syntax-010.xml
+Importing css-namespaces-3/reftest/ref-lime-3.xml to css-namespaces-3/ref-lime-3.xml
+Importing css-namespaces-3/syntax-011.xml to css-namespaces-3/syntax-011.xml
+Importing css-namespaces-3/reftest/ref-lime-6.xml to css-namespaces-3/ref-lime-6.xml
+Importing css-namespaces-3/syntax-012.xml to css-namespaces-3/syntax-012.xml
+Importing css-namespaces-3/syntax-013.xml to css-namespaces-3/syntax-013.xml
+Importing css-namespaces-3/syntax-014.xml to css-namespaces-3/syntax-014.xml
+Importing css-namespaces-3/syntax-015.xml to css-namespaces-3/syntax-015.xml
+Importing css-values-3/attr-color-invalid-cast.html to css-values-3/attr-color-invalid-cast.html
+Importing css-values-3/support/1x1-green.png to css-values-3/support/1x1-green.png
+Importing css-values-3/support/1x1-lime.png to css-values-3/support/1x1-lime.png
+Importing css-values-3/support/1x1-maroon.png to css-values-3/support/1x1-maroon.png
+Importing css-values-3/support/1x1-navy.png to css-values-3/support/1x1-navy.png
+Importing css-values-3/support/1x1-red.png to css-values-3/support/1x1-red.png
+Importing css-values-3/support/1x1-white.png to css-values-3/support/1x1-white.png
+Importing css-values-3/support/60x60-gg-rr.png to css-values-3/support/60x60-gg-rr.png
+Importing css-values-3/support/60x60-green.png to css-values-3/support/60x60-green.png
+Importing css-values-3/support/60x60-red.png to css-values-3/support/60x60-red.png
+Importing css-values-3/support/a-green.css to css-values-3/support/a-green.css
+Importing css-values-3/support/b-green.css to css-values-3/support/b-green.css
+Importing css-values-3/support/c-red.css to css-values-3/support/c-red.css
+Importing css-values-3/support/cat.png to css-values-3/support/cat.png
+Importing css-values-3/support/import-green.css to css-values-3/support/import-green.css
+Importing css-values-3/support/import-red.css to css-values-3/support/import-red.css
+Importing css-values-3/support/pattern-grg-rgr-grg.png to css-values-3/support/pattern-grg-rgr-grg.png
+Importing css-values-3/support/pattern-grg-rrg-rgg.png to css-values-3/support/pattern-grg-rrg-rgg.png
+Importing css-values-3/support/pattern-rgr-grg-rgr.png to css-values-3/support/pattern-rgr-grg-rgr.png
+Importing css-values-3/support/pattern-tr.png to css-values-3/support/pattern-tr.png
+Importing css-values-3/support/README to css-values-3/support/README
+Importing css-values-3/support/ruler-h-50%.png to css-values-3/support/ruler-h-50%.png
+Importing css-values-3/support/ruler-h-50px.png to css-values-3/support/ruler-h-50px.png
+Importing css-values-3/support/ruler-v-100px.png to css-values-3/support/ruler-v-100px.png
+Importing css-values-3/support/ruler-v-50px.png to css-values-3/support/ruler-v-50px.png
+Importing css-values-3/support/square-purple.png to css-values-3/support/square-purple.png
+Importing css-values-3/support/square-teal.png to css-values-3/support/square-teal.png
+Importing css-values-3/support/square-white.png to css-values-3/support/square-white.png
+Importing css-values-3/support/swatch-blue.png to css-values-3/support/swatch-blue.png
+Importing css-values-3/support/swatch-green.png to css-values-3/support/swatch-green.png
+Importing css-values-3/support/swatch-lime.png to css-values-3/support/swatch-lime.png
+Importing css-values-3/support/swatch-orange.png to css-values-3/support/swatch-orange.png
+Importing css-values-3/support/swatch-red.png to css-values-3/support/swatch-red.png
+Importing css-values-3/support/swatch-teal.png to css-values-3/support/swatch-teal.png
+Importing css-values-3/support/swatch-white.png to css-values-3/support/swatch-white.png
+Importing css-values-3/support/swatch-yellow.png to css-values-3/support/swatch-yellow.png
+Importing css-values-3/support/test-bl.png to css-values-3/support/test-bl.png
+Importing css-values-3/support/test-br.png to css-values-3/support/test-br.png
+Importing css-values-3/support/test-inner-half-size.png to css-values-3/support/test-inner-half-size.png
+Importing css-values-3/support/test-outer.png to css-values-3/support/test-outer.png
+Importing css-values-3/support/test-tl.png to css-values-3/support/test-tl.png
+Importing css-values-3/support/test-tr.png to css-values-3/support/test-tr.png
+Importing css-values-3/support/support/README to css-values-3/support/support/README
+Importing css-values-3/support/support/swatch-green.png to css-values-3/support/support/swatch-green.png
+Importing css-values-3/support/support/swatch-red.png to css-values-3/support/support/swatch-red.png
+Importing css-values-3/reference/200-200-green.html to css-values-3/200-200-green.html
+Importing css-values-3/attr-color-invalid-fallback.html to css-values-3/attr-color-invalid-fallback.html
+Importing css-values-3/attr-color-valid.html to css-values-3/attr-color-valid.html
+Importing css-values-3/attr-invalid-type-001.html to css-values-3/attr-invalid-type-001.html
+Importing css-values-3/attr-invalid-type-002.html to css-values-3/attr-invalid-type-002.html
+Importing css-values-3/attr-invalid-type-003.html to css-values-3/attr-invalid-type-003.html
+Importing css-values-3/attr-length-invalid-cast.html to css-values-3/attr-length-invalid-cast.html
+Importing css-values-3/attr-length-invalid-fallback.html to css-values-3/attr-length-invalid-fallback.html
+Importing css-values-3/attr-length-valid-zero-nofallback.html to css-values-3/attr-length-valid-zero-nofallback.html
+Importing css-values-3/attr-length-valid-zero.html to css-values-3/attr-length-valid-zero.html
+Importing css-values-3/attr-length-valid.html to css-values-3/attr-length-valid.html
+Importing css-values-3/attr-px-invalid-cast.html to css-values-3/attr-px-invalid-cast.html
+Importing css-values-3/attr-px-invalid-fallback.html to css-values-3/attr-px-invalid-fallback.html
+Importing css-values-3/attr-px-valid.html to css-values-3/attr-px-valid.html
+Importing css-values-3/calc-in-calc.html to css-values-3/calc-in-calc.html
+Importing css-values-3/reference/all-green.html to css-values-3/all-green.html
+Importing css-values-3/calc-in-media-queries-001.html to css-values-3/calc-in-media-queries-001.html
+Importing css-values-3/calc-in-media-queries-002.html to css-values-3/calc-in-media-queries-002.html
+Importing css-values-3/calc-invalid-range-clamping.html to css-values-3/calc-invalid-range-clamping.html
+Importing css-values-3/calc-parenthesis-stack.html to css-values-3/calc-parenthesis-stack.html
+Importing css-values-3/ch-unit-001.html to css-values-3/ch-unit-001.html
+Importing css-values-3/reference/ch-unit-001-ref.html to css-values-3/ch-unit-001-ref.html
+Importing css-values-3/initial-background-color.html to css-values-3/initial-background-color.html
+Importing css-values-3/vh-calc-support-pct.html to css-values-3/vh-calc-support-pct.html
+Importing css-values-3/vh-calc-support.html to css-values-3/vh-calc-support.html
+Importing css-values-3/vh-em-inherit.html to css-values-3/vh-em-inherit.html
+Importing css-values-3/vh-inherit.html to css-values-3/vh-inherit.html
+Importing css-values-3/vh-interpolate-pct.html to css-values-3/vh-interpolate-pct.html
+Importing css-values-3/vh-interpolate-px.html to css-values-3/vh-interpolate-px.html
+Importing css-values-3/vh-interpolate-vh.html to css-values-3/vh-interpolate-vh.html
+Importing css-values-3/vh-support-atviewport.html to css-values-3/vh-support-atviewport.html
+Importing css-values-3/vh-support-margin.html to css-values-3/vh-support-margin.html
+Importing css-values-3/vh-support-transform-origin.html to css-values-3/vh-support-transform-origin.html
+Importing css-values-3/vh-support-transform-translate.html to css-values-3/vh-support-transform-translate.html
+Importing css-values-3/vh-support.html to css-values-3/vh-support.html
+Importing css-values-3/vh-zero-support.html to css-values-3/vh-zero-support.html
+Importing css-values-3/vh_not_refreshing_on_chrome.html to css-values-3/vh_not_refreshing_on_chrome.html
+Importing css-values-3/reference/vh_not_refreshing_on_chrome-ref.html to css-values-3/vh_not_refreshing_on_chrome-ref.html
+Importing css-values-3/vh_not_refreshing_on_chrome_iframe.html to css-values-3/vh_not_refreshing_on_chrome_iframe.html
--- a/layout/reftests/w3c-css/received/reftest.list
+++ b/layout/reftests/w3c-css/received/reftest.list
@@ -1,102 +1,102 @@
-# THIS FILE IS AUTOGENERATED BY import-tests.py
-# DO NOT EDIT!
-== css-conditional-3/at-media-whitespace-optional-001.html css-conditional-3/background-lime.html
-== css-conditional-3/at-media-whitespace-optional-002.html css-conditional-3/background-lime.html
-== css-conditional-3/at-supports-001.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-002.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-003.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-004.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-005.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-006.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-007.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-008.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-009.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-010.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-011.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-012.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-013.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-014.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-015.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-016.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-017.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-018.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-019.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-020.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-021.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-022.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-023.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-024.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-025.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-026.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-027.html css-conditional-3/at-supports-027-ref.html
-== css-conditional-3/at-supports-028.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-029.html css-conditional-3/at-supports-027-ref.html
-== css-conditional-3/at-supports-030.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-031.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-032.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-033.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-034.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-035.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-036.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-037.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-038.html css-conditional-3/at-supports-001-ref.html
-== css-conditional-3/at-supports-039.html css-conditional-3/at-supports-001-ref.html
-== css-namespaces-3/prefix-001.xml css-namespaces-3/ref-lime-1.xml
-== css-namespaces-3/prefix-002.xml css-namespaces-3/ref-lime-1.xml
-== css-namespaces-3/prefix-003.xml css-namespaces-3/ref-lime-1-generic.xml
-== css-namespaces-3/prefix-004.xml css-namespaces-3/ref-lime-2-generic.xml
-== css-namespaces-3/prefix-005.xml css-namespaces-3/ref-lime-2-generic.xml
-== css-namespaces-3/prefix-006.xml css-namespaces-3/ref-lime-2.xml
-== css-namespaces-3/scope-001.xml css-namespaces-3/ref-lime-1.xml
-== css-namespaces-3/scope-002.xml css-namespaces-3/ref-lime-1.xml
-== css-namespaces-3/syntax-001.xml css-namespaces-3/ref-lime-1-block.xml
-== css-namespaces-3/syntax-002.xml css-namespaces-3/ref-lime-1-block.xml
-== css-namespaces-3/syntax-003.xml css-namespaces-3/ref-lime-5.xml
-== css-namespaces-3/syntax-004.xml css-namespaces-3/ref-lime-1.xml
-== css-namespaces-3/syntax-005.xml css-namespaces-3/ref-lime-5.xml
-== css-namespaces-3/syntax-006.xml css-namespaces-3/ref-lime-1.xml
-== css-namespaces-3/syntax-007.xml css-namespaces-3/ref-lime-1.xml
-== css-namespaces-3/syntax-008.xml css-namespaces-3/ref-lime-2.xml
-== css-namespaces-3/syntax-009.xml css-namespaces-3/ref-lime-1.xml
-== css-namespaces-3/syntax-010.xml css-namespaces-3/ref-lime-3.xml
-== css-namespaces-3/syntax-011.xml css-namespaces-3/ref-lime-6.xml
-== css-namespaces-3/syntax-012.xml css-namespaces-3/ref-lime-3.xml
-== css-namespaces-3/syntax-013.xml css-namespaces-3/ref-lime-5.xml
-== css-namespaces-3/syntax-014.xml css-namespaces-3/ref-lime-3.xml
-== css-namespaces-3/syntax-015.xml css-namespaces-3/ref-lime-1.xml
-fails == css-values-3/attr-color-invalid-cast.html css-values-3/200-200-green.html
-== css-values-3/attr-color-invalid-fallback.html css-values-3/200-200-green.html
-fails == css-values-3/attr-color-valid.html css-values-3/200-200-green.html
-== css-values-3/attr-invalid-type-001.html css-values-3/200-200-green.html
-== css-values-3/attr-invalid-type-002.html css-values-3/200-200-green.html
-== css-values-3/attr-invalid-type-003.html css-values-3/200-200-green.html
-fails == css-values-3/attr-length-invalid-cast.html css-values-3/200-200-green.html
-== css-values-3/attr-length-invalid-fallback.html css-values-3/200-200-green.html
-fails == css-values-3/attr-length-valid-zero-nofallback.html css-values-3/200-200-green.html
-fails == css-values-3/attr-length-valid-zero.html css-values-3/200-200-green.html
-fails == css-values-3/attr-length-valid.html css-values-3/200-200-green.html
-fails == css-values-3/attr-px-invalid-cast.html css-values-3/200-200-green.html
-== css-values-3/attr-px-invalid-fallback.html css-values-3/200-200-green.html
-fails == css-values-3/attr-px-valid.html css-values-3/200-200-green.html
-== css-values-3/calc-in-calc.html css-values-3/all-green.html
-fails == css-values-3/calc-in-media-queries-001.html css-values-3/all-green.html
-fails == css-values-3/calc-in-media-queries-002.html css-values-3/all-green.html
-== css-values-3/calc-invalid-range-clamping.html css-values-3/200-200-green.html
-== css-values-3/calc-parenthesis-stack.html css-values-3/all-green.html
-skip == css-values-3/ch-unit-001.html css-values-3/ch-unit-001-ref.html
-== css-values-3/initial-background-color.html css-values-3/all-green.html
-== css-values-3/vh-calc-support-pct.html css-values-3/all-green.html
-== css-values-3/vh-calc-support.html css-values-3/all-green.html
-== css-values-3/vh-em-inherit.html css-values-3/all-green.html
-== css-values-3/vh-inherit.html css-values-3/all-green.html
-fails == css-values-3/vh-interpolate-pct.html css-values-3/all-green.html
-== css-values-3/vh-interpolate-px.html css-values-3/all-green.html
-== css-values-3/vh-interpolate-vh.html css-values-3/all-green.html
-== css-values-3/vh-support-atviewport.html css-values-3/all-green.html
-== css-values-3/vh-support-margin.html css-values-3/all-green.html
-skip == css-values-3/vh-support-transform-origin.html css-values-3/all-green.html
-skip == css-values-3/vh-support-transform-translate.html css-values-3/all-green.html
-== css-values-3/vh-support.html css-values-3/all-green.html
-== css-values-3/vh-zero-support.html css-values-3/all-green.html
-skip == css-values-3/vh_not_refreshing_on_chrome.html css-values-3/vh_not_refreshing_on_chrome-ref.html
-skip == css-values-3/vh_not_refreshing_on_chrome_iframe.html css-values-3/vh_not_refreshing_on_chrome-ref.html
+# THIS FILE IS AUTOGENERATED BY import-tests.py
+# DO NOT EDIT!
+== css-conditional-3/at-media-whitespace-optional-001.html css-conditional-3/background-lime.html
+== css-conditional-3/at-media-whitespace-optional-002.html css-conditional-3/background-lime.html
+== css-conditional-3/at-supports-001.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-002.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-003.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-004.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-005.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-006.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-007.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-008.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-009.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-010.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-011.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-012.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-013.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-014.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-015.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-016.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-017.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-018.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-019.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-020.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-021.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-022.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-023.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-024.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-025.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-026.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-027.html css-conditional-3/at-supports-027-ref.html
+== css-conditional-3/at-supports-028.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-029.html css-conditional-3/at-supports-027-ref.html
+== css-conditional-3/at-supports-030.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-031.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-032.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-033.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-034.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-035.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-036.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-037.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-038.html css-conditional-3/at-supports-001-ref.html
+== css-conditional-3/at-supports-039.html css-conditional-3/at-supports-001-ref.html
+== css-namespaces-3/prefix-001.xml css-namespaces-3/ref-lime-1.xml
+== css-namespaces-3/prefix-002.xml css-namespaces-3/ref-lime-1.xml
+== css-namespaces-3/prefix-003.xml css-namespaces-3/ref-lime-1-generic.xml
+== css-namespaces-3/prefix-004.xml css-namespaces-3/ref-lime-2-generic.xml
+== css-namespaces-3/prefix-005.xml css-namespaces-3/ref-lime-2-generic.xml
+== css-namespaces-3/prefix-006.xml css-namespaces-3/ref-lime-2.xml
+== css-namespaces-3/scope-001.xml css-namespaces-3/ref-lime-1.xml
+== css-namespaces-3/scope-002.xml css-namespaces-3/ref-lime-1.xml
+== css-namespaces-3/syntax-001.xml css-namespaces-3/ref-lime-1-block.xml
+== css-namespaces-3/syntax-002.xml css-namespaces-3/ref-lime-1-block.xml
+== css-namespaces-3/syntax-003.xml css-namespaces-3/ref-lime-5.xml
+== css-namespaces-3/syntax-004.xml css-namespaces-3/ref-lime-1.xml
+== css-namespaces-3/syntax-005.xml css-namespaces-3/ref-lime-5.xml
+== css-namespaces-3/syntax-006.xml css-namespaces-3/ref-lime-1.xml
+== css-namespaces-3/syntax-007.xml css-namespaces-3/ref-lime-1.xml
+== css-namespaces-3/syntax-008.xml css-namespaces-3/ref-lime-2.xml
+== css-namespaces-3/syntax-009.xml css-namespaces-3/ref-lime-1.xml
+== css-namespaces-3/syntax-010.xml css-namespaces-3/ref-lime-3.xml
+== css-namespaces-3/syntax-011.xml css-namespaces-3/ref-lime-6.xml
+== css-namespaces-3/syntax-012.xml css-namespaces-3/ref-lime-3.xml
+== css-namespaces-3/syntax-013.xml css-namespaces-3/ref-lime-5.xml
+== css-namespaces-3/syntax-014.xml css-namespaces-3/ref-lime-3.xml
+== css-namespaces-3/syntax-015.xml css-namespaces-3/ref-lime-1.xml
+fails == css-values-3/attr-color-invalid-cast.html css-values-3/200-200-green.html
+== css-values-3/attr-color-invalid-fallback.html css-values-3/200-200-green.html
+fails == css-values-3/attr-color-valid.html css-values-3/200-200-green.html
+== css-values-3/attr-invalid-type-001.html css-values-3/200-200-green.html
+== css-values-3/attr-invalid-type-002.html css-values-3/200-200-green.html
+== css-values-3/attr-invalid-type-003.html css-values-3/200-200-green.html
+fails == css-values-3/attr-length-invalid-cast.html css-values-3/200-200-green.html
+== css-values-3/attr-length-invalid-fallback.html css-values-3/200-200-green.html
+fails == css-values-3/attr-length-valid-zero-nofallback.html css-values-3/200-200-green.html
+fails == css-values-3/attr-length-valid-zero.html css-values-3/200-200-green.html
+fails == css-values-3/attr-length-valid.html css-values-3/200-200-green.html
+fails == css-values-3/attr-px-invalid-cast.html css-values-3/200-200-green.html
+== css-values-3/attr-px-invalid-fallback.html css-values-3/200-200-green.html
+fails == css-values-3/attr-px-valid.html css-values-3/200-200-green.html
+== css-values-3/calc-in-calc.html css-values-3/all-green.html
+fails == css-values-3/calc-in-media-queries-001.html css-values-3/all-green.html
+fails == css-values-3/calc-in-media-queries-002.html css-values-3/all-green.html
+== css-values-3/calc-invalid-range-clamping.html css-values-3/200-200-green.html
+== css-values-3/calc-parenthesis-stack.html css-values-3/all-green.html
+skip == css-values-3/ch-unit-001.html css-values-3/ch-unit-001-ref.html
+== css-values-3/initial-background-color.html css-values-3/all-green.html
+== css-values-3/vh-calc-support-pct.html css-values-3/all-green.html
+== css-values-3/vh-calc-support.html css-values-3/all-green.html
+== css-values-3/vh-em-inherit.html css-values-3/all-green.html
+== css-values-3/vh-inherit.html css-values-3/all-green.html
+fails == css-values-3/vh-interpolate-pct.html css-values-3/all-green.html
+== css-values-3/vh-interpolate-px.html css-values-3/all-green.html
+== css-values-3/vh-interpolate-vh.html css-values-3/all-green.html
+== css-values-3/vh-support-atviewport.html css-values-3/all-green.html
+== css-values-3/vh-support-margin.html css-values-3/all-green.html
+skip == css-values-3/vh-support-transform-origin.html css-values-3/all-green.html
+skip == css-values-3/vh-support-transform-translate.html css-values-3/all-green.html
+== css-values-3/vh-support.html css-values-3/all-green.html
+== css-values-3/vh-zero-support.html css-values-3/all-green.html
+skip == css-values-3/vh_not_refreshing_on_chrome.html css-values-3/vh_not_refreshing_on_chrome-ref.html
+skip == css-values-3/vh_not_refreshing_on_chrome_iframe.html css-values-3/vh_not_refreshing_on_chrome-ref.html