diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /layout/style/test/test_cue_restrictions.html | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/style/test/test_cue_restrictions.html')
-rw-r--r-- | layout/style/test/test_cue_restrictions.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/layout/style/test/test_cue_restrictions.html b/layout/style/test/test_cue_restrictions.html new file mode 100644 index 0000000000..c5b3cf3bda --- /dev/null +++ b/layout/style/test/test_cue_restrictions.html @@ -0,0 +1,34 @@ +<!doctype html> +<meta charset="utf-8"> +<title>Test for ::cue property restrictions.</title> +<script src="/tests/SimpleTest/SimpleTest.js"></script> +<script src="property_database.js"></script> +<link rel="stylesheet" href="/tests/SimpleTest/test.css"/> +<style id="s"></style> +<video id="test"></video> +<video id="control"></video> +<script> +const test = getComputedStyle($("test"), "::cue"); +const control = getComputedStyle($("control"), "::cue"); + +for (const prop in gCSSProperties) { + const info = gCSSProperties[prop]; + if (info.type == CSS_TYPE_TRUE_SHORTHAND) + continue; + + let prereqs = ""; + if (info.prerequisites) + for (let name in info.prerequisites) + prereqs += `${name}: ${info.prerequisites[name]}; `; + + $("s").textContent = ` + #control::cue { ${prop}: ${info.initial_values[0]}; ${prereqs} } + #test::cue { ${prop}: ${info.other_values[0]}; ${prereqs} } + `; + + (info.applies_to_cue ? isnot : is)( + get_computed_value(test, prop), + get_computed_value(control, prop), + `${prop} should ${info.applies_to_cue ? "" : "not "}apply to ::cue`); +} +</script> |