mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00: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>
|