diff options
Diffstat (limited to 'tests/wpt/css-tests/css-variables-1_dev/html')
7 files changed, 11 insertions, 11 deletions
diff --git a/tests/wpt/css-tests/css-variables-1_dev/html/reference/support/external-variable-font-face.css b/tests/wpt/css-tests/css-variables-1_dev/html/reference/support/external-variable-font-face.css index d9873734812..87f0609ba3d 100644 --- a/tests/wpt/css-tests/css-variables-1_dev/html/reference/support/external-variable-font-face.css +++ b/tests/wpt/css-tests/css-variables-1_dev/html/reference/support/external-variable-font-face.css @@ -8,8 +8,8 @@ src: url(./Ahem.ttf); } #a { - font-family: MyTestFontName; + font-family: MyTestFontName, serif; } #b { - font-family: MyTestFontName2; + font-family: MyTestFontName2, serif; } diff --git a/tests/wpt/css-tests/css-variables-1_dev/html/reference/variable-external-font-face-01-ref.htm b/tests/wpt/css-tests/css-variables-1_dev/html/reference/variable-external-font-face-01-ref.htm index 29522e1fdcd..5c3a4dbff31 100644 --- a/tests/wpt/css-tests/css-variables-1_dev/html/reference/variable-external-font-face-01-ref.htm +++ b/tests/wpt/css-tests/css-variables-1_dev/html/reference/variable-external-font-face-01-ref.htm @@ -6,6 +6,6 @@ <link href="mailto:cam@mcc.id.au" rel="author" title="Cameron McCormack"> <link href="support/ahem.css" type="text/css" rel="stylesheet"> <meta content="ahem" name="flags"> -</head><body><p>This text must not be in Ahem.</p> +</head><body><p style="font-family: serif">This text must not be in Ahem.</p> <p style="font-family: Ahem">But this text must be in Ahem.</p> </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-variables-1_dev/html/reference/variable-font-face-01-ref.htm b/tests/wpt/css-tests/css-variables-1_dev/html/reference/variable-font-face-01-ref.htm index 29522e1fdcd..5c3a4dbff31 100644 --- a/tests/wpt/css-tests/css-variables-1_dev/html/reference/variable-font-face-01-ref.htm +++ b/tests/wpt/css-tests/css-variables-1_dev/html/reference/variable-font-face-01-ref.htm @@ -6,6 +6,6 @@ <link href="mailto:cam@mcc.id.au" rel="author" title="Cameron McCormack"> <link href="support/ahem.css" type="text/css" rel="stylesheet"> <meta content="ahem" name="flags"> -</head><body><p>This text must not be in Ahem.</p> +</head><body><p style="font-family: serif">This text must not be in Ahem.</p> <p style="font-family: Ahem">But this text must be in Ahem.</p> </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-variables-1_dev/html/reference/variable-font-face-02-ref.htm b/tests/wpt/css-tests/css-variables-1_dev/html/reference/variable-font-face-02-ref.htm index 29522e1fdcd..5c3a4dbff31 100644 --- a/tests/wpt/css-tests/css-variables-1_dev/html/reference/variable-font-face-02-ref.htm +++ b/tests/wpt/css-tests/css-variables-1_dev/html/reference/variable-font-face-02-ref.htm @@ -6,6 +6,6 @@ <link href="mailto:cam@mcc.id.au" rel="author" title="Cameron McCormack"> <link href="support/ahem.css" type="text/css" rel="stylesheet"> <meta content="ahem" name="flags"> -</head><body><p>This text must not be in Ahem.</p> +</head><body><p style="font-family: serif">This text must not be in Ahem.</p> <p style="font-family: Ahem">But this text must be in Ahem.</p> </body></html>
\ No newline at end of file diff --git a/tests/wpt/css-tests/css-variables-1_dev/html/support/external-variable-font-face.css b/tests/wpt/css-tests/css-variables-1_dev/html/support/external-variable-font-face.css index d9873734812..87f0609ba3d 100644 --- a/tests/wpt/css-tests/css-variables-1_dev/html/support/external-variable-font-face.css +++ b/tests/wpt/css-tests/css-variables-1_dev/html/support/external-variable-font-face.css @@ -8,8 +8,8 @@ src: url(./Ahem.ttf); } #a { - font-family: MyTestFontName; + font-family: MyTestFontName, serif; } #b { - font-family: MyTestFontName2; + font-family: MyTestFontName2, serif; } diff --git a/tests/wpt/css-tests/css-variables-1_dev/html/variable-font-face-01.htm b/tests/wpt/css-tests/css-variables-1_dev/html/variable-font-face-01.htm index 0936c0071cf..f5f454dce7b 100644 --- a/tests/wpt/css-tests/css-variables-1_dev/html/variable-font-face-01.htm +++ b/tests/wpt/css-tests/css-variables-1_dev/html/variable-font-face-01.htm @@ -18,10 +18,10 @@ src: url(support/Ahem.ttf); } #a { - font-family: MyTestFontName; + font-family: MyTestFontName, serif; } #b { - font-family: MyTestFontName2; + font-family: MyTestFontName2, serif; } </style> </head><body><p id="a">This text must not be in Ahem.</p> diff --git a/tests/wpt/css-tests/css-variables-1_dev/html/variable-font-face-02.htm b/tests/wpt/css-tests/css-variables-1_dev/html/variable-font-face-02.htm index f738b3a92b1..c8b89076eb7 100644 --- a/tests/wpt/css-tests/css-variables-1_dev/html/variable-font-face-02.htm +++ b/tests/wpt/css-tests/css-variables-1_dev/html/variable-font-face-02.htm @@ -20,10 +20,10 @@ src: url(support/Ahem.ttf); } #a { - font-family: MyTestFontName; + font-family: MyTestFontName, serif; } #b { - font-family: MyTestFontName2; + font-family: MyTestFontName2, serif; } </style> </head><body><p id="a">This text must not be in Ahem.</p> |