summaryrefslogtreecommitdiff
path: root/works/margin-background2.html
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2019-02-16 14:39:10 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2019-02-16 14:39:10 +0000
commit48553ee9ba7723d46c10fdc7705e3b79e328d384 (patch)
treed066fa82cc308b57c5d00f3dd0538969d5a028a2 /works/margin-background2.html
parentff7f36cc9ef5f8ec8b97bcce543f966e726389bb (diff)
downloadnetsurf-test-48553ee9ba7723d46c10fdc7705e3b79e328d384.tar.gz
netsurf-test-48553ee9ba7723d46c10fdc7705e3b79e328d384.tar.bz2
legacy tests: Move all the old tests to a legacy directory.
These are from the old days of ad-hoc manual testing. There is nothing to indicate correct behaviour for these files without viewing the source, or comparing with another browser.
Diffstat (limited to 'works/margin-background2.html')
-rw-r--r--works/margin-background2.html28
1 files changed, 0 insertions, 28 deletions
diff --git a/works/margin-background2.html b/works/margin-background2.html
deleted file mode 100644
index 316e083..0000000
--- a/works/margin-background2.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<title>Testcase for interaction between margins and background on body</title>
-<style type="text/css">
-/* Test handling of background on html
- * This should produce a background at the bottom-right of the document
- */
-html {
- background-image: url(../images/bg.gif);
- background-position: bottom right;
- background-repeat: no-repeat;
-}
-
-#foo {
- margin-left: 136px;
- width: 400px;
- height: 400px;
- background-color: green;
- background-image: url(../images/bg.gif);
- background-repeat: repeat-x;
-}
-</style>
-</head>
-<body>
- <div id="foo"></div>
-</body>
-</html>