We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e7aa8d commit 41215dbCopy full SHA for 41215db
1 file changed
src/main/java/org/htmlunit/WebWindowImpl.java
@@ -379,11 +379,13 @@ public void setOuterHeight(final int outerHeight) {
379
private void writeObject(final ObjectOutputStream oos) throws IOException {
380
oos.defaultWriteObject();
381
oos.writeObject(scriptObject_);
382
+ oos.writeObject(topLevelScope_);
383
}
384
385
private void readObject(final ObjectInputStream ois) throws ClassNotFoundException, IOException {
386
ois.defaultReadObject();
387
scriptObject_ = (HtmlUnitScriptable) ois.readObject();
388
+ topLevelScope_ = (TopLevel) ois.readObject();
389
390
391
/**
0 commit comments