mirror of
https://github.com/servo/servo.git
synced 2025-07-01 12:33:40 +01:00
28 lines
539 B
HTML
28 lines
539 B
HTML
<!doctype html>
|
|
<html lang=en>
|
|
<meta charset=utf-8>
|
|
<title>CSS-contain test reference</title>
|
|
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
|
|
<meta name=flags content="ahem">
|
|
|
|
<style>
|
|
rt {
|
|
display: ruby-text;
|
|
font-family: ahem;
|
|
font-size: 20px;
|
|
line-height: 1;
|
|
}
|
|
rt::before {
|
|
content: "X";
|
|
color: green;
|
|
}
|
|
rt::after {
|
|
content: "X";
|
|
color: white;
|
|
position: absolute;
|
|
top:0; left: 0;
|
|
}
|
|
</style>
|
|
|
|
<p>This test passes if you can see a green box below.
|
|
<div><ruby><rt></rt></ruby></div>
|