diff options
author | atbrakhi <atbrakhi@igalia.com> | 2025-04-29 10:27:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-29 08:27:42 +0000 |
commit | b92542b756ba3c733e35527d3a8d98bed42e5dc1 (patch) | |
tree | 2adc5d41d4d576c4367cce2ec7370df02d41b644 /tests/wpt/web-platform-tests/css/css-transforms/2d-rotate-ref.html | |
parent | 107fd25465fa7442ae1ca1ed5493fa88fea19233 (diff) | |
download | servo-main.tar.gz servo-main.zip |
This patch adds support for listing `worker scripts` in `debugger >
source` panel
For example:
```
<!-- test.html -->
<!doctype html><meta charset=utf-8>
<script>
setTimeout(() => {
console.log("inline classic");
new Worker("worker.js");
const blob = new Blob([`console.log("blob worker");`], { type: "text/javascript" });
const blobURL = URL.createObjectURL(blob);
new Worker(blobURL);
}, 2000);
</script>
```
```
// worker.js
console.log("external classic worker");
```
```
./mach run --devtools=6080 http://127.0.0.1:3000/test.html
```

Another example:
```
./mach run --devtools=6080 https://charming.daz.cat/
```

- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes partially implement #36027
- [x] These changes require tests, but they are blocked on
https://github.com/servo/servo/issues/36325
---------
Signed-off-by: atbrakhi <atbrakhi@igalia.com>
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-transforms/2d-rotate-ref.html')
0 files changed, 0 insertions, 0 deletions