mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
478 B
HTML
22 lines
478 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<style>
|
|
.first:first-letter { color: red; }
|
|
.right { direction: rtl; }
|
|
</style>
|
|
<script>
|
|
function tweak() {
|
|
document.body.style.background = 'lightblue';
|
|
document.documentElement.className = "";
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="tweak();">
|
|
<div class="first"><span>abc</span></div>
|
|
<div class="first"><span class="right">def</span></div>
|
|
<div class="first right"><span>geh</span></div>
|
|
</body>
|
|
|
|
</html>
|