mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
[assert] element.getAttributeNode
This commit is contained in:
parent
58129c4396
commit
78dcb125ea
27
test/ecmascript/assert/element.getAttributeNode.html
Normal file
27
test/ecmascript/assert/element.getAttributeNode.html
Normal file
@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
.democlass {
|
||||
color: red;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="democlass">Hello World</h1>
|
||||
<p>Click the button to display the value of the class attribute node of the h1 element.</p>
|
||||
<button onclick="myFunction()">Try it</button>
|
||||
<p id="demo"></p>
|
||||
<script>
|
||||
function myFunction() {
|
||||
var elmnt = document.getElementsByTagName("H1")[0];
|
||||
var attr = elmnt.getAttributeNode("class").value;
|
||||
console.assert(attr === 'democlass', 'democlass');
|
||||
}
|
||||
|
||||
console.error('element.getAttributeNode.html');
|
||||
myFunction();
|
||||
console.exit(0);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user