mirror of
https://github.com/servo/servo.git
synced 2025-06-26 10:04:33 +01:00
19 lines
639 B
HTML
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>
|