forked from mirrors/gecko-dev
Automatic update from web-platform-tests Convert css/ idlharness.js tests to use idl_test (#15071) * Convert css/ idlharness.js tests to use idl_test This is to make all loads of cssom.idl go through the same code path which will make it possible to add a workaround for https://github.com/web-platform-tests/wpt/issues/12515 in idl_test. * Add objects where possible And remove empty callback where not. -- wpt-commits: 0a5c24bfbae76f68e24870100a3e184bd303d5b6 wpt-pr: 15071
16 lines
478 B
HTML
16 lines
478 B
HTML
<!doctype html>
|
|
<title>CSS Properties Values API IDL tests</title>
|
|
<link rel="help" href="https://drafts.css-houdini.org/css-properties-values-api-1/">
|
|
<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-properties-values-api"],
|
|
["cssom"]
|
|
// No objects
|
|
);
|
|
</script>
|