diff options
author | Luke <luke.wilde@live.co.uk> | 2020-07-24 21:24:11 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-07-25 12:35:15 +0200 |
commit | 08221139a57ddf941d9ba44f9a700d22e33d6665 (patch) | |
tree | 7708ece0e2c0f4b498c5bb3aa6a7aa70a77b57c2 /Base/res | |
parent | 1d6a3a5e8fd418c2f36bb002282a2c6192b75f79 (diff) | |
download | serenity-08221139a57ddf941d9ba44f9a700d22e33d6665.zip |
test-web: Add ability to change page mid-test
This allows you to not have to write a separate test file
for the same thing but in a different situation.
This doesn't handle when you change the page with location.href
however.
Changes the name of the page load handlers to prevent confusion
with this.
Diffstat (limited to 'Base/res')
-rw-r--r-- | Base/res/html/misc/blank-no-doctype.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Base/res/html/misc/blank-no-doctype.html b/Base/res/html/misc/blank-no-doctype.html new file mode 100644 index 0000000000..25f1d14c0e --- /dev/null +++ b/Base/res/html/misc/blank-no-doctype.html @@ -0,0 +1,7 @@ +<html> +<head> +<title>Blank</title> +</head> +<body> +</body> +</html> |