fune/testing/web-platform/tests/css/css-ruby/parsing/ruby-merge-valid.html
Florian Rivoal 0c273d1c81 Bug 1637909 [wpt PR 23591] - [css-ruby] test parsing of the ruby-merge property, a=testonly
Automatic update from web-platform-tests
[css-ruby] test parsing of the ruby-merge property (#23591)

See https://github.com/w3c/csswg-drafts/issues/5004
--

wpt-commits: 48950262c7bfde62ce876471f354b878b06958ce
wpt-pr: 23591
2020-05-25 14:32:39 +00:00

19 lines
639 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Ruby Layout: parsing ruby-merge with valid values</title>
<link rel="help" href="https://drafts.csswg.org/css-ruby-1/#ruby-align-property">
<meta name="assert" content="ruby-merge supports the full grammar 'separate | merge | auto'.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
</head>
<body>
<script>
test_valid_value("ruby-align", "separate");
test_valid_value("ruby-align", "merge");
test_valid_value("ruby-align", "auto");
</script>
</body>
</html>