mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
18 lines
463 B
HTML
18 lines
463 B
HTML
<!doctype html>
|
|
<title>CSS Parser API IDL tests</title>
|
|
<link rel="help" href="https://wicg.github.io/css-parser-api/">
|
|
<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-parser-api'],
|
|
['cssom'],
|
|
idl_array => {
|
|
// No objects
|
|
}
|
|
);
|
|
</script>
|