diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/html/infrastructure/common-microsyntaxes | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/html/infrastructure/common-microsyntaxes')
2 files changed, 26 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/infrastructure/common-microsyntaxes/colours/parsing-legacy-colour-value-ascii-case-insensitive-ref.html b/testing/web-platform/tests/html/infrastructure/common-microsyntaxes/colours/parsing-legacy-colour-value-ascii-case-insensitive-ref.html new file mode 100644 index 0000000000..6565e0e750 --- /dev/null +++ b/testing/web-platform/tests/html/infrastructure/common-microsyntaxes/colours/parsing-legacy-colour-value-ascii-case-insensitive-ref.html @@ -0,0 +1,6 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<link rel="stylesheet" type="text/css" href="/fonts/ahem.css"> +<p>This square should be black: <font face="Ahem">X</font> +<p>This square should be black: <font face="Ahem">X</font> +<p>This square should be blue: <font face="Ahem" color="#0000E0">X</font> diff --git a/testing/web-platform/tests/html/infrastructure/common-microsyntaxes/colours/parsing-legacy-colour-value-ascii-case-insensitive.html b/testing/web-platform/tests/html/infrastructure/common-microsyntaxes/colours/parsing-legacy-colour-value-ascii-case-insensitive.html new file mode 100644 index 0000000000..eee4a9c7c8 --- /dev/null +++ b/testing/web-platform/tests/html/infrastructure/common-microsyntaxes/colours/parsing-legacy-colour-value-ascii-case-insensitive.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<link rel="help" href="https://html.spec.whatwg.org/#rules-for-parsing-a-legacy-colour-value"> +<link rel="match" href="parsing-legacy-colour-value-ascii-case-insensitive-ref.html"> +<meta name="assert" content="special legacy color value “transparent” is ASCII case-insensitive"> +<link rel="stylesheet" type="text/css" href="/fonts/ahem.css"> +<p>This square should be black: <font face="Ahem" color="transparent">X</font> +<p>This square should be black: <font face="Ahem" color="TrAnSpArEnT">X</font> +<p>This square should be blue: <font face="Ahem" color="tranſparent">X</font> +<!-- + Following the rules for parsing a legacy color value should yield a shade of + blue, because only the following steps apply, not step 4: + + 1. tranſparent + 10. 00a000a0e00 + 11. 00a000a0e000 + 12. 00a0 00a0 e000 (length = 4) + 15. 00 00 e0 + 20. #0000E0 +--> |