diff options
| author | hjk <qthjk@ovi.com> | 2012-12-10 17:21:29 +0100 |
|---|---|---|
| committer | The Qt Project <gerrit-noreply@qt-project.org> | 2012-12-10 18:37:29 +0100 |
| commit | 129bcf57471d09f15cbfe6dc3ab397689e6eb245 (patch) | |
| tree | b4901c52b1f75212303be606e6c40530c2afcd53 /examples/webkitwidgets/browser/htmls | |
| parent | 539c47c9c93335196dbde56f7ba98de0e6600a38 (diff) | |
Adjust webkit example project install targets.
This follows suit with aeb036e in qtbase.
Change-Id: Ifc85b327df81d15f3579b911e07c95a3b7a3bb9d
Reviewed-by: Michael Bruning <michael.bruning@digia.com>
Reviewed-by: Pierre Rossi <pierre.rossi@gmail.com>
Diffstat (limited to 'examples/webkitwidgets/browser/htmls')
| -rw-r--r-- | examples/webkitwidgets/browser/htmls/htmls.qrc | 5 | ||||
| -rw-r--r-- | examples/webkitwidgets/browser/htmls/notfound.html | 63 |
2 files changed, 68 insertions, 0 deletions
diff --git a/examples/webkitwidgets/browser/htmls/htmls.qrc b/examples/webkitwidgets/browser/htmls/htmls.qrc new file mode 100644 index 0000000..03b256c --- /dev/null +++ b/examples/webkitwidgets/browser/htmls/htmls.qrc @@ -0,0 +1,5 @@ +<!DOCTYPE RCC><RCC version="1.0"> +<qresource> + <file>notfound.html</file> +</qresource> +</RCC> diff --git a/examples/webkitwidgets/browser/htmls/notfound.html b/examples/webkitwidgets/browser/htmls/notfound.html new file mode 100644 index 0000000..e89845a --- /dev/null +++ b/examples/webkitwidgets/browser/htmls/notfound.html @@ -0,0 +1,63 @@ +<html> +<head> +<title>%1</title> +<style> +body { + padding: 3em 0em; + background: #eeeeee; +} +hr { + color: lightgray; + width: 100%; +} +img { + float: left; + opacity: .8; +} +#box { + background: white; + border: 1px solid lightgray; + width: 600px; + padding: 60px; + margin: auto; +} +h1 { + font-size: 130%; + font-weight: bold; + border-bottom: 1px solid lightgray; + margin-left: 48px; +} +h2 { + font-size: 100%; + font-weight: normal; + border-bottom: 1px solid lightgray; + margin-left: 48px; +} +ul { + font-size: 80%; + padding-left: 48px; + margin: 0; +} +#reloadButton { + padding-left: 48px; +} +</style> +</head> +<body> + <div id="box"> + <img src="data:image/png;base64,IMAGE_BINARY_DATA_HERE" width="32" height="32"/> + <h1>%2</h1> + <h2>When connecting to: %3.</h2> + <ul> + <li>Check the address for errors such as <b>ww</b>.example.com + instead of <b>www</b>.example.com</li> + <li>If the address is correct, try checking the network + connection.</li> + <li>If your computer or network is protected by a firewall or + proxy, make sure that the browser demo is permitted to access + the network.</li> + </ul> + <br/><br/> + </div> +</body> +</html> |
