mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
15 lines
332 B
HTML
15 lines
332 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Incremental layout letter-spacing test</title>
|
|
</head>
|
|
<body>
|
|
<p>Hello, world!</p>
|
|
<script>
|
|
window.addEventListener("load", function() {
|
|
document.querySelector("p").style.letterSpacing = "1em";
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|