File tree Expand file tree Collapse file tree
javascript/ql/test/library-tests/DOM Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ test_documentRef
33| event-handler-receiver.js:1:1:1:8 | document |
44| event-handler-receiver.js:5:1:5:8 | document |
55| nameditems.js:1:1:1:8 | document |
6+ | querySelectorAll.js:2:5:2:12 | document |
67test_locationRef
78| customization.js:3:3:3:14 | doc.location |
89test_domValueRef
@@ -20,5 +21,7 @@ test_domValueRef
2021| nameditems.js:1:1:1:23 | documen ... entById |
2122| nameditems.js:1:1:1:30 | documen ... ('foo') |
2223| nameditems.js:1:1:2:19 | documen ... em('x') |
24+ | querySelectorAll.js:2:5:2:29 | documen ... ctorAll |
25+ | querySelectorAll.js:2:5:2:36 | documen ... ('foo') |
2326| tst.js:49:3:49:8 | window |
2427| tst.js:50:3:50:8 | window |
Original file line number Diff line number Diff line change 1+ ( function ( ) {
2+ document . querySelectorAll ( 'foo' ) . forEach ( elm => {
3+ elm . innerHTML = 'hey' ;
4+ } ) ;
5+ } ) ;
You can’t perform that action at this time.
0 commit comments