diff options
author | Daniel Adams <70986246+msub2@users.noreply.github.com> | 2024-09-22 11:55:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-22 11:55:31 +0000 |
commit | 3a0d27b2312c6396e85178615290ac2ec3592ce1 (patch) | |
tree | 176d477ddbcda90e0c1ed1041868b67b28f92fbf /components/script/dom/webidls/WebGLObject.webidl | |
parent | 8276673bae999c3e74d71c81ca84842ed1365c89 (diff) | |
download | servo-3a0d27b2312c6396e85178615290ac2ec3592ce1.tar.gz servo-3a0d27b2312c6396e85178615290ac2ec3592ce1.zip |
webgl: Update IDL exposed members (#33509)
* Update IDLs to expose on Workers
Signed-off-by: Daniel Adams <msub2official@gmail.com>
* Update usage of Canvas/OffscreenCanvas union, add label
Signed-off-by: Daniel Adams <msub2official@gmail.com>
* Update WPT expectations
Signed-off-by: Daniel Adams <msub2official@gmail.com>
* Fix match arm
Signed-off-by: Daniel Adams <msub2official@gmail.com>
* Add missing spec links
Signed-off-by: Daniel Adams <msub2official@gmail.com>
* Update expectations
Signed-off-by: Daniel Adams <msub2official@gmail.com>
* Update interfaces.worker.js
Signed-off-by: Daniel Adams <msub2official@gmail.com>
---------
Signed-off-by: Daniel Adams <msub2official@gmail.com>
Diffstat (limited to 'components/script/dom/webidls/WebGLObject.webidl')
-rw-r--r-- | components/script/dom/webidls/WebGLObject.webidl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/webidls/WebGLObject.webidl b/components/script/dom/webidls/WebGLObject.webidl index 90feba0ab6a..6bfcf4d647b 100644 --- a/components/script/dom/webidls/WebGLObject.webidl +++ b/components/script/dom/webidls/WebGLObject.webidl @@ -6,6 +6,7 @@ // https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.3 // -[Abstract, Exposed=Window] +[Abstract, Exposed=(Window,Worker)] interface WebGLObject { + attribute USVString label; }; |