Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/document-metadata/the-style-element/sheet-with-empty-style.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>The sheet property should work even with an empty style element</title>
<link rel="author" title="Domenic Denicola" href="mailto:d@domenic.me">
<style></style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
"use strict";
setup({ single_test: true });
assert_not_equals(document.querySelector("style").sheet, null);
assert_true(document.querySelector("style").sheet instanceof CSSStyleSheet);
done();
</script>