diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
commit | 40a355a42d4a9444dc753c04c6608dade2f06a23 (patch) | |
tree | 871fc667d2de662f171103ce5ec067014ef85e61 /testing/web-platform/tests/css/CSS2/values | |
parent | Adding upstream version 124.0.1. (diff) | |
download | firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.tar.xz firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.zip |
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/values')
-rw-r--r-- | testing/web-platform/tests/css/CSS2/values/color-000-ref.xht | 22 | ||||
-rw-r--r-- | testing/web-platform/tests/css/CSS2/values/color-000.xht | 35 |
2 files changed, 0 insertions, 57 deletions
diff --git a/testing/web-platform/tests/css/CSS2/values/color-000-ref.xht b/testing/web-platform/tests/css/CSS2/values/color-000-ref.xht deleted file mode 100644 index 9d463033b3..0000000000 --- a/testing/web-platform/tests/css/CSS2/values/color-000-ref.xht +++ /dev/null @@ -1,22 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> -<title>CSS Reftest Reference</title> -<link rel="author" title="Ms2ger" href="mailto:Ms2ger@gmail.com"/> -<style type="text/css"> -p { - color: green; -} -</style> -</head> -<body> -<p>This should be green</p> -<p>This should be green</p> -<p>This should be green</p> -<p>This should be green</p> -<p>This should be green</p> -<p>This should be green</p> -<p>This should be green</p> -<p>This should be green</p> -</body> -</html> diff --git a/testing/web-platform/tests/css/CSS2/values/color-000.xht b/testing/web-platform/tests/css/CSS2/values/color-000.xht deleted file mode 100644 index ea2e3f51d3..0000000000 --- a/testing/web-platform/tests/css/CSS2/values/color-000.xht +++ /dev/null @@ -1,35 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" - "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <title>CSS Test: RGB color syntax error handling</title> - <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/> - <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/parsing/006.html" type="text/html"/> - <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#color-units"/> - <link rel="match" href="color-000-ref.xht"/> - <meta name="flags" content="invalid"/> - <style type="text/css"> - p.correct { color: red } - p.incorrect { color: green } - p#numnumpercent { color: rgb(255, 0, 0%) } - p#percentnumnum { color: rgb(100%, 0, 0) } - p#percentpercentnum { color: rgb(100%, 0%, 0) } - p#percentnumpercent { color: rgb(100%, 0, 0%) } - p#numpercentnum { color: rgb(255, 0%, 0); } - p#numnumnum { color: rgb(0, 128, 0) } - p#percentpercentpercent1 { color: rgb(0%, 50%, 0%) } - p#percentpercentpercent2 { color: rgb(0%, 50.01%, 0%) } - </style> - </head> - <body> - <p class="incorrect" id="numnumpercent">This should be green</p> - <p class="incorrect" id="percentnumnum">This should be green</p> - <p class="incorrect" id="percentpercentnum">This should be green</p> - <p class="incorrect" id="percentnumpercent">This should be green</p> - <p class="incorrect" id="numpercentnum">This should be green</p> - - <p class="correct" id="numnumnum">This should be green</p> - <p class="correct" id="percentpercentpercent1">This should be green</p> - <p class="correct" id="percentpercentpercent2">This should be green</p> - </body> -</html> |