Source code
Revision control
Copy as Markdown
Other Tools
<!doctype html>
<title>Historical style element features should not be supported</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
function t(property) {
test(function() {
assert_false(property in document.createElement('style'));
}, 'style.' + property + ' should not be supported');
}
t('scoped');
</script>