diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-text/text-align/text-align-webkit-match-parent.html')
-rw-r--r-- | testing/web-platform/tests/css/css-text/text-align/text-align-webkit-match-parent.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-text/text-align/text-align-webkit-match-parent.html b/testing/web-platform/tests/css/css-text/text-align/text-align-webkit-match-parent.html new file mode 100644 index 0000000000..aaf481a9d1 --- /dev/null +++ b/testing/web-platform/tests/css/css-text/text-align/text-align-webkit-match-parent.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<title>text-align: -webkit-match-parent should not be supported</title> +<link rel="help" href="https://drafts.csswg.org/css-text/#valdef-text-align-match-parent"> +<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> |