mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[assert] element.isSameNode
This commit is contained in:
parent
7a66c9ff27
commit
01c29b3d42
31
test/ecmascript/assert/element.isSameNode.html
Normal file
31
test/ecmascript/assert/element.isSameNode.html
Normal file
@ -0,0 +1,31 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
|
||||
<p>Click the button to check if the ul element with id="myList" is the same as the document's first ul element.</p>
|
||||
|
||||
<button onclick="myFunction()">Try it</button>
|
||||
|
||||
<ul id="myList"><li>Coffee</li><li>Tea</li></ul>
|
||||
|
||||
<p><strong>Note:</strong> Firefox stopped supported this method as of version 10, Instead, use === to compare if two nodes are the same.</p>
|
||||
|
||||
<p><strong>Note:</strong> Internet Explorer 8 and earlier does not support the isSameNode() method.</p>
|
||||
|
||||
<p id="demo"></p>
|
||||
|
||||
<script>
|
||||
function myFunction() {
|
||||
var item1 = document.getElementById("myList");
|
||||
var item2 = document.getElementsByTagName("UL")[0];
|
||||
var x = item1.isSameNode(item2);
|
||||
console.assert(x, 'True');
|
||||
}
|
||||
|
||||
console.error('element.isSameNode.html');
|
||||
myFunction();
|
||||
console.exit(0);
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user