mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +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
11 lines
237 B
HTML
11 lines
237 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
let readyStates = []
|
|
document.onreadystatechange = function() {
|
|
readyStates.push(document.readyState);
|
|
}
|
|
test(() => {
|
|
println(readyStates);
|
|
});
|
|
</script>
|