update test

This commit is contained in:
Erik Krogh Kristensen
2020-12-03 16:58:08 +01:00
parent 3bad75dae5
commit 47488f86b5
2 changed files with 12 additions and 0 deletions

View File

@@ -4,7 +4,9 @@ test_documentRef
test_locationRef
| customization.js:3:3:3:14 | doc.location |
test_domValueRef
| customization.js:4:3:4:20 | doc.getElementById |
| customization.js:4:3:4:28 | doc.get ... 'test') |
| nameditems.js:1:1:1:23 | documen ... entById |
| nameditems.js:1:1:1:30 | documen ... ('foo') |
| nameditems.js:1:1:2:19 | documen ... em('x') |
| tst.js:49:3:49:8 | window |

View File

@@ -8,3 +8,13 @@ function EventTarget() {}
/** @type {EventTarget} */
var window;
/**
* @see http://dev.w3.org/html5/workers/
* @interface
* @extends {EventTarget}
*/
function WorkerGlobalScope() {}
/** @type {WorkerLocation} */
WorkerGlobalScope.prototype.location;