Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text/text-align/text-align-webkit-match-parent.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>text-align: -webkit-match-parent should not be supported</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
test(function() {
assert_false(CSS.supports('text-align: -webkit-match-parent'));
});
</script>