Update web-platform-tests to revision 73bd4355b891665829c66e1b83d64bcc29197a16

This commit is contained in:
WPT Sync Bot 2020-05-15 08:19:23 +00:00
parent e1cc38bea8
commit db12fbb0be
146 changed files with 2401 additions and 798 deletions

View file

@ -0,0 +1,19 @@
<!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>