661ef78880
We broke this in the refactor because of a nil pointer dereference, but we didn't catch that as none of the tests loaded a page with an iframe. That is, a page with multiple frames. Add such a test, and fix the bug by creating an almost-empty frame when we start receiving events about a new frame before it's navigated to.
10 lines
134 B
HTML
10 lines
134 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>page with an iframe</title>
|
|
</head>
|
|
<body>
|
|
<iframe src="form.html"></iframe>
|
|
</body>
|
|
</html>
|