summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/normal-flow/block-non-replaced-width-007.xht
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/normal-flow/block-non-replaced-width-007.xht')
-rw-r--r--testing/web-platform/tests/css/CSS2/normal-flow/block-non-replaced-width-007.xht46
1 files changed, 46 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/normal-flow/block-non-replaced-width-007.xht b/testing/web-platform/tests/css/CSS2/normal-flow/block-non-replaced-width-007.xht
new file mode 100644
index 0000000000..7c11940645
--- /dev/null
+++ b/testing/web-platform/tests/css/CSS2/normal-flow/block-non-replaced-width-007.xht
@@ -0,0 +1,46 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <title>CSS Test: Box centering with 'margin-left' and 'margin-right' set to auto</title>
+ <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
+ <link rel="reviewer" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-09-29 -->
+ <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#blockwidth" />
+ <link rel="match" href="block-non-replaced-width-007-ref.xht" />
+
+ <meta name="flags" content="ahem" />
+ <meta name="assert" content="When 'margin-left' and 'margin-right' are set to 'auto' and the element has a 'width', then the box will be centered within the edges of its containing block." />
+ <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
+ <style type="text/css">
+ #div1
+ {
+ border: solid black;
+ height: 200px;
+ width: 200px;
+ }
+ #div2
+ {
+ background-color: orange;
+ border-color: orange;
+ border-style: solid;
+ border-width: 0 25px;
+ margin: 0 auto;
+ padding: 0;
+ height: 100px;
+ width: 50px;
+ }
+ #div3
+ {
+ color: blue;
+ font: 100px/1 Ahem;
+ text-align: center;
+ }
+ </style>
+ </head>
+ <body>
+ <p>Test passes if the blue and orange squares have the same width and the blue square is directly below the orange square.</p>
+ <div id="div1">
+ <div id="div2"></div>
+ <div id="div3">X</div>
+ </div>
+ </body>
+</html> \ No newline at end of file