diff options
author | Luke <luke.wilde@live.co.uk> | 2020-07-23 07:53:52 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-07-23 13:11:41 +0200 |
commit | 60599d03dd3b1673a8e635a4f0d132ccbcea9a50 (patch) | |
tree | 07e7465d8caf3176e14b58783b4ac8e5f0558069 /Base/res | |
parent | a2bbacbfc8f0cca8f9d416b5622d36177e10e5ba (diff) | |
download | serenity-60599d03dd3b1673a8e635a4f0d132ccbcea9a50.zip |
LibWeb+test-web: Create test-web program, add doctype test
LibWeb currently has no test suite or program. Let's change that :^)
test-web is mostly a copy of test-js, but modified for LibWeb.
test-web imports both LibJS/Tests/test-common.js and
LibWeb/Test/test-common.js
LibWeb's suite provides the ability to specify the page to load,
what to do before the page is loaded, and what to do after it's
loaded.
This also provides a test of document.doctype and its close sibling
document.compatMode.
Currently, this isn't added to Lagom because of CodeGenerators.
Diffstat (limited to 'Base/res')
-rw-r--r-- | Base/res/html/misc/blank.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Base/res/html/misc/blank.html b/Base/res/html/misc/blank.html new file mode 100644 index 0000000000..8677849ac7 --- /dev/null +++ b/Base/res/html/misc/blank.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<html> +<head> +<title>Blank</title> +</head> +<body> +</body> +</html> |