mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-05 02:06:25 +00:00
18 lines
226 B
HTML
18 lines
226 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
var child = document.createTextNode("a");
|
|
|
|
var attr = document.createAttribute("a");
|
|
try {
|
|
attr.appendChild(child);
|
|
}
|
|
catch (e) {
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
</html>
|