diff options
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/linebox/anonymous-inline-inherit-001.html')
-rw-r--r-- | testing/web-platform/tests/css/CSS2/linebox/anonymous-inline-inherit-001.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/linebox/anonymous-inline-inherit-001.html b/testing/web-platform/tests/css/CSS2/linebox/anonymous-inline-inherit-001.html new file mode 100644 index 0000000000..77904d80e4 --- /dev/null +++ b/testing/web-platform/tests/css/CSS2/linebox/anonymous-inline-inherit-001.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<link rel="match" href="anonymous-inline-inherit-001-ref.html"> +<link rel="help" href="https://drafts.csswg.org/css2/visuren.html#anonymous"> +<link rel="author" href="kojii@chromium.org"> +<!-- + The text node for "x" should be wrapped in an anonymous inline box, + which should have the initial value for non-inherited properties. + https://drafts.csswg.org/css2/visuren.html#anonymous +--> +<body> + <span style="vertical-align: top"> + <span style="font-size: 500%">A</span> + x + </span> +</body> |