mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
16 lines
225 B
HTML
16 lines
225 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<ul>
|
|
<li id="blub">
|
|
<p>Test</p>
|
|
</li>
|
|
</ul>
|
|
<script>
|
|
document.getElementById('blub').firstChild.data = document.getElementById('blub').firstChild.data;
|
|
</script>
|
|
</body>
|
|
</html>
|