author | L. David Baron <dbaron@dbaron.org> |
Wed, 18 Dec 2013 13:24:04 -0500 | |
changeset 161072 | f49cc729e9f989b265d7fd04a74b3ec464852eff |
parent 161071 | d73e10e80b85e107aa0f03696ef3b3bca8210094 |
child 161073 | 5bfe133fd363cddfca9ab2b66a0f8c86848a8bc1 |
push id | 25866 |
push user | ryanvm@gmail.com |
push date | Thu, 19 Dec 2013 02:15:01 +0000 |
treeherder | mozilla-central@940c52e93281 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 951765 |
milestone | 29.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-01.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-01.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable consisting of a single token preceded by white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: green; color: var(a); } </style>
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-02.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-02.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable consisting of a single token with no preceding white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a:green; color: var(a); } </style>
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-03.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-03.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that references another variable.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: var(b); var-b: green; color: var(a); }
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-04.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-04.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable consisting of a variable reference followed by white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: var(b) ; var-b: green; color: var(a); }
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-05.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-05.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable consisting of a variable reference that includes white space around the variable name.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: var( b ) ; var-b: green; color: var(a); }
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-06.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-06.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test overriding an existing variable declaration.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: orange; var-a: green; color: var(a); }
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-07.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-07.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable with invalid syntax due to a variable reference having no tokens in its fallback.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: green; var-b: crimson; var-a: var(b,); color: var(a);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-08.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-08.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that consists of a variable reference whose fallback is white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: orange; var-b: green; var-a: var(b, ); color: var(a);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-09.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-09.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable with invalid syntax due to a variable reference having only a comment in its fallback.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: green; var-b: crimson; var-a: var(b,/**/); color: var(a);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-10.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-10.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that consists of a variable reference with a fallback that includes a comment and an identifier.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: orange; var-b: green; var-a: var(b,/**/a); color: var(a);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-11.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-11.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable with invalid syntax due to a variable reference having a '!' token at the top level of its fallback.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: green; var-b: crimson; var-a: var(b,!); color: var(a);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-12.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-12.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable with invalid syntax due to a variable reference having a ';' token at the top level of its fallback.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: green; var-b: crimson; var-a: var(b,;); color: var(a);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-13.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-13.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable with invalid syntax due to a variable reference having "!important" the top level of its fallback.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: green; var-b: crimson; var-a: var(b,!important); color: var(a);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-14.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-14.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that consists of a variable reference and a following identifier with no intervening white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: green; } span { color: red; var-a:var(b)red;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-15.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-15.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that consists of a comma-separated font family list.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="variable-declaration-15-ref.html"> <meta name="flags" content="ahem"> <link rel="stylesheet" href="support/ahem.css" type="text/css"> <style> body { font-family: serif; } p {
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-16.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-16.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that consists of a comma-separated font family list with the first item being a variable reference.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="variable-declaration-16-ref.html"> <meta name="flags" content="ahem"> <link rel="stylesheet" href="support/ahem.css" type="text/css"> <style> body { font-family: serif; } p {
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-17.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-17.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that consists of a comma-separated font family list with the last item being a variable reference.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="variable-declaration-17-ref.html"> <meta name="flags" content="ahem"> <link rel="stylesheet" href="support/ahem.css" type="text/css"> <style> body { font-family: serif; } p {
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-18.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-18.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that consists of a comma-separated font family list with the comma coming from a variable reference.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="variable-declaration-18-ref.html"> <meta name="flags" content="ahem"> <link rel="stylesheet" href="support/ahem.css" type="text/css"> <style> body { font-family: serif; } p {
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-19.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-19.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that consists of a function where one of the arguments is a variable reference.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-a: rgb(0, var(b), 0);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-20.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-20.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable with "!important".</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-a: var(b) !important;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-21.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-21.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that consists of a function where all of the arguments and commas are made up of variable references.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-a: rgb(var(b)var(c)var(d));
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-22.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-22.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that consists of a variable reference with a number of levels of variable reference fallbacks.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-a: var(b, var(c, var(d, green)));
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-23.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-23.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable with invalid syntax due to having two "!important" priorities.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-a: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-24.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-24.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that contains a CDO token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: green; } p { color: red; }
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-25.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-25.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that contains a CDC token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: green; } p { color: red; }
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-26.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-26.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that contains only a white space token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-a: ;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-28.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-28.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable with invalid syntax due to having no tokens.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-a: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-29.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-29.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable with an invalid custom property name "var-".</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-: crimson;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-30.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-30.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that contains a variable reference to itself.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#cycles"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#cycles"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-a: crimson;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-31.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-31.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable where the variable name begins with a digit.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-0: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-32.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-32.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable where the variable name begins with an escaped digit.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-\30: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-33.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-33.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable where the variable name begins with an escaped letter.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-\61: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-34.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-34.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable where the variable name begins with a lone surrogate.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-\d800: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-35.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-35.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable where the variable name begins with U+FFFD.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-\fffd: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-36.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-36.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable where the variable name begins with an out-of-range Unicode character escape.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-\ffffff: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-37.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-37.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable consisting of a variable reference where white space surrounds the comma separating the variable name and fallback.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-a: var(b , );
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-38.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-38.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring two variables in the same declaration block that differ only in case, with lowercase first.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-a: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-39.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-39.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring two variables in the same declaration block that differ only in case, with uppercase first.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-A: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-40.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-40.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable with an invalid custom property name due to it beginning with "VAR-".</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-a: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-41.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-41.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable where the 'a' in the "var-" prefix of the custom property name is escaped.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; v\61r-a: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-42.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-42.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable where the custom property name includes an unescaped Chinese character and an escape that is terminated by a space character.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <meta charset=utf-8> <style> p { color: red; } p { color: orange;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-43.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-43.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable whose value is "initial".</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-a: initial;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-44.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-44.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable whose value is "inherit" where there is no variable to inherit from.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-a: inherit;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-45.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-45.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable whose value is "inherit" where there is a variable to inherit from.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { var-a: green; color: crimson; } p { color: red;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-46.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-46.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable whose value is "initial" where there is a variable to inherit from.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { var-a: crimson; } p { color: red; }
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-47.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-47.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable whose value consists of a reference to a variable whose value is "inherit".</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { var-b: green; color: crimson; } p { color: red;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-48.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-48.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a number of variables in a cycle.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#cycles"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#cycles"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: green; } p { color: crimson; var-a: red var(b);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-49.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-49.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that is a dependent of a variable involved in a cycle but which itself is not involved in a cycle.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#cycles"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#cycles"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: orange; } p { color: crimson; var-a: red var(b) var(g);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-50.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-50.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a number of variables in a chain, where the final element of the chain uses its fallback.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#cycles"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#cycles"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: green; } p { color: crimson; var-a: var(b,red);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-51.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-51.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that consists of a reference to an invalid inherited variable.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#invalid-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#invalid-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: orange; var-c: var(a); } p { var-a: var(b);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-52.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-52.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that consists of a reference to an inherited variable whose value was a variable reference that used its fallback.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: orange; var-c: var(a,green); } p { var-a: var(b);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-53.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-53.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that consists of two variable references without fallback and with no intervening white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: green; } span { color: red; var-a:var(b)var(c);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-54.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-54.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that consists of two variable references with the first variable reference using fallback and with no intervening white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: green; } span { color: red; var-a:var(b,orange)var(c);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-55.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-55.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that consists of two variable references with the second variable reference using fallback and with no intervening white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: green; } span { color: red; var-a:var(b)var(c,red);
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-56.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-56.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable whose value is "unset" where there is no variable to inherit from.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; } p { color: orange; var-a: unset;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-57.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-57.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable whose value is "unset" where there is a variable to inherit from.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { var-a: green; color: crimson; } p { color: red;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-58.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-58.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable whose value consists of a reference to a variable whose value is "unset".</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { var-b: green; color: crimson; } p { color: red;
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-59.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-59.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable with a trailing invalid token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: var(a); var-a: green; var-a: red); } </style>
--- a/layout/reftests/w3c-css/submitted/variables/variable-declaration-60.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-declaration-60.html @@ -1,17 +1,17 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <meta charset=utf-8> <title>CSS Test: Test declaring a variable with a value whose name is "initial" but using Turkish dotted/dotless 'i's.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> div { color: orange; var-a: green; color: var(a); } p {
--- a/layout/reftests/w3c-css/submitted/variables/variable-font-face-01.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-font-face-01.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test the invalid declaration and use of a variable in an @font-face rule.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="variable-font-face-01-ref.html"> <meta name="flags" content="ahem"> <style> @font-face { var-a: MyTestFontName; font-family: var(a); src: url(../../../fonts/Ahem.ttf); }
--- a/layout/reftests/w3c-css/submitted/variables/variable-font-face-02.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-font-face-02.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test the invalid use of a variable in an @font-face rule where the variable is defined on the root element.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="variable-font-face-02-ref.html"> <meta name="flags" content="ahem"> <style> :root { var-a: MyTestFontName; } @font-face { font-family: var(a);
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-01.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-01.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test the use of a variable in a non-custom property where the variable value is inherited.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> :root { var-a: green; } p { color: var(a); }
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-02.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-02.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test the use of a variable in a non-custom property where the value is invalid at computed-value time due to referencing a non-existent variable.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#invalid-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#invalid-variables"> <link rel="match" href="support/color-green-ref.html"> <style> :root { var-a: crimson; color: red; } body { color: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-03.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-03.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test the use of two variables in a non-custom property where the variable values are inherited and one of the variable values consists only of white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> :root { var-a: green; var-b: ; color: red; } p {
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-04.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-04.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test the use of two variables in a non-custom property where one variable is inherited and the other references a non-existing variable with fallback that consists only of white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> :root { var-a: green; color: red; } p { color: crimson;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-05.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-05.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test the use of a variable in a non-custom property where the values contains no tokens other than the variable reference.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { var-a: green; color: red; } p { color: crimson;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-06.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-06.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property with invalid syntax due to having a variable reference whose fallback contains no tokens.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { var-a: crimson; color: red; } p { color: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-07.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-07.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property with invalid syntax due to having a variable reference whose fallback contains a top level ';' token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { var-a: crimson; color: red; } p { color: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-08.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-08.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property with invalid syntax due to having a variable reference whose fallback contains a top level '!' token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { var-a: crimson; color: red; } p { color: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-09.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-09.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property with a variable reference that has a non-top level ';' token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { var-a: green; color: crimson; } p { color: red;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-10.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-10.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property with a variable reference that has a non-top level '!' token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { var-a: green; color: crimson; } p { color: red;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-11.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-11.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property with invalid syntax due to having a variable reference whose fallback contains nothing but a comment.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { var-a: crimson; color: red; } p { color: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-12.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-12.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test the use of variable references in the 'content' property.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="variable-reference-12-ref.html"> <style> :root { var-a: "hello"; var-b: "there"; } #a:before { content: var(a) " " var(b);
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-13.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-13.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test that important variable declarations are not overwritten by subsequent non-important variable declarations in the one declaration block.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: green !important; var-a: crimson; color: var(a); }
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-14.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-14.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test that important variable declarations cascade correctly.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> #a { var-a: green !important; } p { color: red; var-a: crimson;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-15.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-15.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property with two variable references with no intervening white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: green; } p { color: crimson; var-a: orange;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-16.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-16.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property that consists of a variable reference with a number of levels of variable reference fallbacks.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } p { color: crimson; color: var(a, var(b, var(c, green)));
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-17.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-17.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property that consists of a variable reference whose fallback contains a CDO token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } p { color: crimson; var-a: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-18.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-18.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property that contains a variable reference and balanced braces and square brackets.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: green; } p { color: red; color: { [ var(a) ] };
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-19.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-19.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property that contains a variable reference and a non-top level ';' token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: green; } p { color: red; color: [;] var(a);
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-20.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-20.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property that contains a variable reference whose function token is in uppercase.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: green; color: VAR(a); } </style>
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-21.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-21.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property that contains a reference to a variable whose name must be escaped.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-0: green; color: var(\30); } </style>
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-22.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-22.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property that contains a reference to a variable whose name is U+FFFD but which was declared and referenced using a lone surrogate.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-\d800: green; color: var(\d800); } </style>
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-23.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-23.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property that contains a reference to a variable whose name is U+FFFD but which was declared using a lone surrogate.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-\d800: green; color: var(\fffd); } </style>
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-24.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-24.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property that contains a reference to a variable whose name is U+FFFD but which was declared using an out-of-range Unicode character escape.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-\ffffff: green; color: var(\fffd); } </style>
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-25.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-25.html @@ -1,15 +1,15 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property that contains a variable reference with no fallback and which is implicitly closed due to EOF.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: green; color: var(a</style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-26.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-26.html @@ -1,15 +1,15 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property that contains a variable reference with white space before its comma and fallback consisting only of white space and which is implicitly closed due to EOF.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: green; color: var(a , </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-27.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-27.html @@ -1,15 +1,15 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property that contains a variable reference with fallback consisting only of white space and which is implicitly closed due to EOF.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: green; color: var(a, </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-28.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-28.html @@ -1,15 +1,15 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property that contains a variable reference whose fallback is a variable reference, both of which are implicitly closed due to EOF.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: green; color: var(a, var(b</style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-29.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-29.html @@ -1,15 +1,15 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property that contains a variable reference with no fallback, and whose variable name is followed by a comment, and where the comment and the variable reference are implicitly closed due to EOF.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: green; color: var(a /* unclosed comment</style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-30.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-30.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property with invalid syntax due to containing two "!important" priorities.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: green; var-a: red; color: var(a) !important !important; } </style>
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-31.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-31.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property with invalid syntax due to containing a variable reference with a non-identifier variable name.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: orange; } p { color: green; var-0: red;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-32.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-32.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property with invalid syntax due to containing a variable reference with fallback that contains a bad string.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: orange; } p { color: green; var-a: red;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-33.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-33.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property containing a variable reference with fallback is an implicitly closed string due to EOF.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: orange; } p { color: red; var-a: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-34.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-34.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property with invalid syntax due to containing a variable reference with fallback that contains a bad URL.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: orange; } p { color: green; var-a: red;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-35.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-35.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom property containing a variable reference with fallback is an implicitly closed URL due to EOF.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: orange; } p { color: red; var-a: green;
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-36.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-36.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom shorthand property containing a variable reference.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#variables-in-shorthands"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#variables-in-shorthands"> <link rel="match" href="variable-reference-36-ref.html"> <style> p { background-color: red; var-a: url(nothing) green; background: var(a); color: white; }
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-37.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-37.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a non-custom shorthand property containing a variable reference, with a subsequent property in the declaration block that overrides one of the shorthand's components.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#variables-in-shorthands"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#variables-in-shorthands"> <link rel="match" href="variable-reference-37-ref.html"> <style> p { var-a: url(nothing) red; background: var(a); background-color: green; color: white; }
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-38.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-38.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test using variables in overlapping shorthands.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#variables-in-shorthands"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#variables-in-shorthands"> <link rel="match" href="variable-declaration-59-ref.html"> <style> p { padding-left: 1em; } #a { var-style: solid; var-left: black dotted; border-style: var(style); border-left: var(left); border-top: none; border-right: none; border-bottom: none; } #b { var-style: solid; var-left: black dotted; border-left: var(left); border-style: var(style); border-top: none; border-right: none; border-bottom: none; } </style> <p id=a>The left border must be dotted.</p> <p id=b>The left border must be solid.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-reference-39.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-reference-39.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test declaring a variable that references itself but uses fallback.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#cycles"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#cycles"> <link rel="match" href="support/color-green-ref.html"> <style> p { color: red; var-a: var(a, red); color: var(a, green); } </style>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-01.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-01.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule where the property value contains a variable reference and no white space tokens.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color:var(a)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-02.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-02.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule where the property value contains a white space token followed by a variable reference.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-03.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-03.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule where the property value contains a variable reference surrounded by white space tokens.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a) ) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-04.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-04.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule where the property value contains a variable reference surrounded by white space tokens and with white space surrounding the variable name.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var( a ) ) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-05.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-05.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing non-custom property declaration in an @supports rule where the property value contains a syntactically invalid variable reference due to having no fallback tokens.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a)) and (not (color: var(a,))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-06.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-06.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule where the property value contains a variable reference with fallback that is only white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a, )) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-07.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-07.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing non-custom property declaration in an @supports rule where the property value contains a syntactically invalid variable reference due to having no fallback tokens, just a comment.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a)) and (not (color: var(a,/**/))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-08.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-08.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule where the property value contains a comment and an identifier.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a,/**/a)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-09.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-09.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing non-custom property declaration in an @supports rule where the property value contains a syntactically invalid variable reference due to having a '!' token at the top level of its fallback.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a)) and (not (color: var(a,!))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-10.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-10.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing non-custom property declaration in an @supports rule where the property value contains a syntactically invalid variable reference due to having "!important" at the top level of its fallback.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a)) and (not (color: var(a,!important))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-11.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-11.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing 'color' property declaration in an @supports rule with a variable reference that comes after a non-color value.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: 1px var(a)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-12.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-12.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing 'color' property declaration in an @supports rule with a variable reference that comes before a non-color value.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a) 1px) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-13.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-13.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing 'color' property declaration in an @supports rule with a range of different tokens and a variable reference not at the top level.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: something 3px url(whereever) calc(var(a) + 1px)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-14.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-14.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule with a variable reference and an "!important" priority.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a) !important) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-15.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-15.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule with two adjacent variable references with no intervening white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a)var(b)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-16.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-16.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule with a variable reference that has a number of levels of variable reference fallbacks.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a, var(b, var(c, black)))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-17.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-17.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing non-custom property declaration in an @supports rule with two "!important" priorities.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a)) and (not (color: var(a) !important !important)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-18.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-18.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule whose value contains a variable reference and a CDO token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a) <!--) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-19.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-19.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule whose value contains a variable reference and a CDC token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: --> var(a)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-20.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-20.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule whose value contains a variable reference and balanced braces and square brackets.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: { [ var(a) ] }) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-21.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-21.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing non-custom property declaration in an @supports rule where the property value contains a syntactically invalid variable reference due to having a ';' token at the top level of its fallback.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a)) and (not (color: var(a,;))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-22.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-22.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule whose value contains a variable reference and a non-top level ';' token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: [;] var(a)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-23.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-23.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing non-custom property declaration in an @supports rule whose value contains a variable reference with a top level ';' token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a)) and (not (color: var(a);)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-24.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-24.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule whose value contains a variable reference with a non-top level ';' token in its fallback.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a,(;))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-25.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-25.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule whose value contains a variable reference whose function token is in uppercase.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: VAR(a)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-26.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-26.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing non-custom property declaration in an @supports rule whose value contains a variable reference with a number token as the variable name.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a)) and (not (color: var(0))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-27.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-27.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule whose value contains a variable reference with a variable name beginning with an escaped digit.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(\30)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-28.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-28.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule whose value contains a variable reference with a U+FFFD variable name specified by an escaped lone surrogate.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(\d800)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-29.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-29.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule whose value contains a variable reference with a U+FFFD variable name specified by an out-of-range Unicode character escape.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(\ffffff)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-30.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-30.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule whose value contains a variable reference with a dimension token as the variable name.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a)) and (not (color: var(1px))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-31.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-31.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom property declaration in an @supports rule whose value contains a variable reference with white space surrounding the fallback comma.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (color: var(a , )) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-32.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-32.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing non-custom shorthand property declaration in an @supports rule whose value contains a variable reference.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (background: var(a)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-33.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-33.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains a variable reference.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a:var(b)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-34.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-34.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains white space and a variable reference.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: var(b)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-35.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-35.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains a variable reference surrounded by white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: var(b) ) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-36.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-36.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains a variable reference surrounded by white space with the variable name also surrounded by white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: var( b ) ) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-37.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-37.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing custom property declaration in an @supports rule whose value contains a variable reference with no fallback tokens.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: a) and (not (var-a: var(b,))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-38.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-38.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains a variable reference with fallback consisting only of white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: var(b, )) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-39.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-39.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing custom property declaration in an @supports rule whose value contains a variable reference with no fallback tokens, just a comment.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: a) and (not (var-a: var(b,/**/))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-40.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-40.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains a variable reference with fallback consisting of a comment and an identifier.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: var(b,/**/a)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-41.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-41.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing custom property declaration in an @supports rule whose value contains a variable reference with fallback containing a top level '!' token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: a) and (not (var-a: var(b,!))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-42.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-42.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing custom property declaration in an @supports rule whose value contains a variable reference with fallback containing a top level "!important".</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: a) and (not (var-a: var(b,!important))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-43.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-43.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains a dimension followed by a variable reference.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: 1px var(b)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-44.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-44.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains a variable reference followed bya dimension.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: var(b) 1px) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-45.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-45.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains a selection of tokens and a non-top level variable reference.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: something 3px url(whereever) calc(var(b) + 1px)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-46.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-46.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains a variable reference and an "!important" priority.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: var(b) !important) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-47.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-47.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains two adjacent variable references with no intervening white space.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: var(b)var(b)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-48.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-48.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains a variable reference with a number of levels of variable reference fallbacks.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: var(b, var(c, var(d, black)))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-49.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-49.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing custom property declaration in an @supports rule whose value contains two "!important" priorities.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: a) and (not (var-a: var(b) !important !important)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-50.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-50.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains a variable reference and a CDO token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: var(b) <!--) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-51.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-51.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains a variable reference and a CDC token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: --> var(b)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-52.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-52.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains a variable reference and balanced braces and square brackets.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: { [ var(b) ] }) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-53.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-53.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing custom property declaration in an @supports rule whose value contains a variable reference with a top level ';' token in its fallback.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: a) and (not (var-a: var(b,;))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-54.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-54.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains a variable reference and a non-top level ';' token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: [;] var(b)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-55.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-55.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing custom property declaration in an @supports rule whose value contains a variable reference and a top level ';' token in its fallback.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: a) and (not (var-a: var(b);)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-56.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-56.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains only a white space token.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: ) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-57.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-57.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing custom property declaration in an @supports rule whose value contains no tokens.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: a) and (not (var-a:)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-58.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-58.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing property declaration in an @supports rule with property name "var-".</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: a) and (not (var-: a)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-59.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-59.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value contains a variable reference to itself.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#cycles"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#cycles"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a:var(a)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-60.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-60.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule for a variable whose name is a digit.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-0: a) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-61.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-61.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule for a variable whose name is a digit which is specified with an escape.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-\61: a) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-62.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-62.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule for a variable whose name is U+FFFD which is specified with an escaped lone surrogate.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-\d800: a) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-63.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-63.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule for a variable whose name is U+FFFD which is specified with an out-of-range Unicode character escape.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-\ffffff: a) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-64.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-64.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing custom property declaration in an @supports rule whose value is a variable reference with a dimension token as the variable name.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#using-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#using-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: a) and (not (var-a: var(1px))) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-65.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-65.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a passing custom property declaration in an @supports rule whose value is a variable reference with white space surrounding the fallback comma.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#syntax"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#syntax"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: var(b , )) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-66.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-66.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a failing custom property declaration in an @supports rule where the property name begins with "VAR-".</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: a) and (not (VAR-a: a)) { p { color: green; } } </style> <p>This text must be green.</p>
--- a/layout/reftests/w3c-css/submitted/variables/variable-supports-67.html +++ b/layout/reftests/w3c-css/submitted/variables/variable-supports-67.html @@ -1,16 +1,16 @@ <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <title>CSS Test: Test a declaration for a custom property has an invalid value does not cause the @supports rule to fail to parse.</title> <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> -<link rel="help" href="http://dev.w3.org/csswg/css-variables/#defining-variables"> +<link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables"> <link rel="match" href="support/color-green-ref.html"> <style> body { color: red; } @supports (var-a: !) or (var-a: a) { p { color: green; } } </style> <p>This text must be green.</p>