content. Add some first-letter tests, and a few assertions. Bug 367650, r+sr=roc git-svn-id: svn://10.0.0.236/trunk@221107 18797224-902f-48f8-a5cc-f745e15eee43
21 lines
340 B
HTML
21 lines
340 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div { color: black; }
|
|
div::first-letter { color: green; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>This is more text
|
|
<span>
|
|
This is text
|
|
</span>
|
|
</div>
|
|
<script>
|
|
document.body.offsetWidth;
|
|
document.getElementsByTagName("div")[0].firstChild.data = "";
|
|
</script>
|
|
</body>
|
|
</html>
|