mirror of
https://github.com/servo/servo.git
synced 2025-08-13 01:15:34 +01:00
Update web-platform-tests to revision b'ee6da9d71d0268d7fdb04e8e5b26858f46ee0cc4'
This commit is contained in:
parent
4401622eb1
commit
b77ad115f6
16832 changed files with 270819 additions and 87621 deletions
36
tests/wpt/web-platform-tests/css/css-cascade/idlharness.html
Normal file
36
tests/wpt/web-platform-tests/css/css-cascade/idlharness.html
Normal file
|
@ -0,0 +1,36 @@
|
|||
<!doctype html>
|
||||
<title>CSS Cascade Layers IDL tests</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-cascade-5/#layer-apis">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/resources/WebIDLParser.js"></script>
|
||||
<script src="/resources/idlharness.js"></script>
|
||||
|
||||
<style>
|
||||
@layer bar, baz;
|
||||
@import url('data:text/css,') layer(qux);
|
||||
@layer foo { }
|
||||
</style>
|
||||
|
||||
<script>
|
||||
'use strict';
|
||||
idl_test(
|
||||
['css-cascade'],
|
||||
['cssom'],
|
||||
idl_array => {
|
||||
try {
|
||||
self.statement = document.styleSheets[0].cssRules.item(0);
|
||||
self.layeredImport = document.styleSheets[0].cssRules.item(1);
|
||||
self.block = document.styleSheets[0].cssRules.item(2);
|
||||
} catch (e) {
|
||||
// Will be surfaced when any rule is undefined below.
|
||||
}
|
||||
|
||||
idl_array.add_objects({
|
||||
CSSLayerBlockRule: ['block'],
|
||||
CSSLayerStatementRule: ['statement'],
|
||||
CSSImportRule: ['layeredImport']
|
||||
});
|
||||
}
|
||||
);
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue