blob: 7b5b4754269285fcae74778eb06e0f0969c87e75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<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>
|