mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 04:39:03 +02:00
# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D35923 --HG-- extra : source : 03ab20f6337a695a31afb301410182972e4195a9
8 lines
201 B
JavaScript
8 lines
201 B
JavaScript
/* globals state:true */
|
|
is(
|
|
document.readyState,
|
|
"interactive",
|
|
"readyState should be interactive during defer."
|
|
);
|
|
is(state, "readyState interactive", "Bad state upon defer");
|
|
state = "defer";
|