mirror of
https://github.com/servo/servo.git
synced 2025-06-29 19:43:39 +01:00
20 lines
514 B
HTML
20 lines
514 B
HTML
<!doctype html>
|
|
<title>css-regions IDL tests</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-regions/">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/resources/WebIDLParser.js"></script>
|
|
<script src="/resources/idlharness.js"></script>
|
|
<script>
|
|
'use strict';
|
|
|
|
idl_test(
|
|
['css-regions'],
|
|
['cssom', 'dom'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
Document: ['document'],
|
|
})
|
|
}
|
|
);
|
|
</script>
|