mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-03 23:52:08 +00:00
This is just a standard IDL event attribute handler. Fixes at least one WPT test: https://wpt.live/html/dom/documents/resource-metadata-management/document-readyState.html
10 lines
237 B
HTML
10 lines
237 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
let readyStates = []
|
|
document.onreadystatechange = function() {
|
|
readyStates.push(document.readyState);
|
|
}
|
|
test(() => {
|
|
println(readyStates);
|
|
});
|
|
</script>
|