mirror of
https://github.com/servo/servo.git
synced 2025-08-07 14:35:33 +01:00
Update web-platform-tests to revision b'7af9d6ec48ab04043a2bea85a3599904a1a19efa'
This commit is contained in:
parent
8050c95e31
commit
87be1008de
2742 changed files with 142451 additions and 40667 deletions
|
@ -0,0 +1,46 @@
|
|||
<!DOCTYPE html>
|
||||
<title>CSSCounterStyleRule name setter with invalid values</title>
|
||||
<link rel="help" href="https://www.w3.org/TR/css-counter-styles-3/#the-csscounterstylerule-interface">
|
||||
<link rel="author" href="mailto:xiaochengh@chromium.org">
|
||||
<link rel="match" href="cssom-name-setter-ref.html">
|
||||
<style id="sheet">
|
||||
@counter-style foo {
|
||||
system: fixed;
|
||||
symbols: A B C;
|
||||
}
|
||||
|
||||
@counter-style bar {
|
||||
system: fixed;
|
||||
symbols: X Y Z;
|
||||
}
|
||||
</style>
|
||||
|
||||
<ol style="list-style-type: foo; list-style-position: inside">
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
</ol>
|
||||
|
||||
<ol style="list-style-type: bar; list-style-position: inside">
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
</ol>
|
||||
|
||||
<script>
|
||||
// Force layout update before changing the rule
|
||||
document.body.offsetWidth;
|
||||
|
||||
const sheet = document.getElementById('sheet');
|
||||
const rule = sheet.sheet.rules[0];
|
||||
|
||||
// Invalid values should be ignored
|
||||
rule.name = '';
|
||||
rule.name = '123';
|
||||
rule.name = 'initial';
|
||||
rule.name = 'inherit';
|
||||
rule.name = 'unset';
|
||||
rule.name = 'none';
|
||||
rule.name = 'disc';
|
||||
rule.name = 'decimal';
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue