mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
Automatic update from web-platform-tests [css-writing-modes] tests propagation of writing-mode and direction from body to root (#18114) -- wpt-commits: 3da813a3818539a4ce3ca996281723ca9bc4c878 wpt-pr: 18114
21 lines
380 B
HTML
21 lines
380 B
HTML
<html>
|
|
<meta chartset=utf-8>
|
|
<title>Test reference</title>
|
|
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
|
|
<style>
|
|
html {
|
|
direction: rtl;
|
|
}
|
|
body {
|
|
height: 0;
|
|
}
|
|
html::before {
|
|
content: "This text must be on the right";
|
|
}
|
|
html::after {
|
|
content: "This text must be on the left";
|
|
display: block;
|
|
direction: ltr;
|
|
}
|
|
</style>
|
|
<body></body>
|