mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
LibWeb: Implement HTMLTrackElement.readyState
This commit is contained in:
committed by
Tim Ledbetter
parent
4f4fdce62a
commit
1d12cb69d4
Notes:
github-actions[bot]
2024-08-06 06:58:30 +00:00
Author: https://github.com/jamierocks Commit: https://github.com/LadybirdBrowser/ladybird/commit/1d12cb69d46 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/977 Reviewed-by: https://github.com/tcl3 ✅
@@ -0,0 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<script src="../include.js"></script>
|
||||
<script>
|
||||
test(() => {
|
||||
const track = document.createElement('track');
|
||||
println(`track.readyState == NONE: ${track.readyState === HTMLTrackElement.NONE}`);
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user