mirror of
https://github.com/servo/servo.git
synced 2025-06-28 19:13:41 +01:00
20 lines
764 B
HTML
20 lines
764 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS UI Level 4: parsing outline-style with invalid values</title>
|
|
<link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
|
|
<link rel="help" href="https://drafts.csswg.org/css-ui/#outline-style">
|
|
<meta name="assert" content="outline-style supports only the grammar 'auto | <outline-line-style>'.">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="../support/parsing-testcommon.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
test_invalid_value("outline-style", "hidden");
|
|
test_invalid_value("outline-style", "dotted dashed");
|
|
test_invalid_value("outline-style", "solid double groove ridge");
|
|
</script>
|
|
</body>
|
|
</html>
|