mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-22 14:31:20 +03:00
17 lines
424 B
HTML
17 lines
424 B
HTML
<html>
|
|
<head>
|
|
<title>Inline Script innerHTML Test</title>
|
|
<link rel="stylesheet" type="text/css" href="tst.css">
|
|
</head>
|
|
<body>
|
|
<h1>Inline Script innerHTML Test</h1>
|
|
<p>Before</p>
|
|
<p id="demo">some text you should never see</p>
|
|
<noscript><p>Javascript is disabled</p></noscript>
|
|
<script type="text/javascript">
|
|
document.getElementById("demo").innerHTML="text inserted by script";
|
|
</script>
|
|
<p>Afterwards</p>
|
|
</body>
|
|
</html>
|