1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-20 01:46:15 -04:00
elinks/test/ecmascript/assert/element.setAttribute.html

33 lines
749 B
HTML
Raw Normal View History

2024-04-28 10:13:54 -04:00
<!DOCTYPE html>
<html>
<head>
<style>
.democlass {
color: red;
}
</style>
</head>
<body>
<h1>Hello World</h1>
<p>Click the button to add a class attribute with the value of "democlass" to the h1 element.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
var before = document.getElementsByTagName("H1")[0].outerHTML;
console.assert(before === '<h1>Hello World</h1>', 'H1');
2024-04-28 10:13:54 -04:00
document.getElementsByTagName("H1")[0].setAttribute("class", "democlass");
var after = document.getElementsByTagName("H1")[0].outerHTML;
console.assert(after === '<h1 class="democlass">Hello World</h1>', 'H1 with class');
2024-04-28 10:13:54 -04:00
}
console.error("element.setAttribute.html");
myFunction();
console.exit();
2024-04-28 10:13:54 -04:00
</script>
</body>
</html>