mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
5bc00870a9
content. Add some first-letter tests, and a few assertions. Bug 367650, r+sr=roc
20 lines
427 B
HTML
20 lines
427 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div { color: black; }
|
|
div::first-letter { color: green; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div><span></span></div>
|
|
<script>
|
|
document.body.offsetWidth;
|
|
document.getElementsByTagName("span")[0].
|
|
appendChild(document.createTextNode('"'));
|
|
document.getElementsByTagName("span")[0].
|
|
appendChild(document.createTextNode('This is text"'));
|
|
</script>
|
|
</body>
|
|
</html>
|