Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / transforms / 2d / transform-borderbox.html
blobaed2a270da12a717b46c908489d5fa73a30d5337
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
4 <html lang="en">
5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
7 <title>Transform Center with Borders</title>
8 <style type="text/css" media="screen">
9 .container {
10 height: 210px;
11 width: 400px;
12 margin: 30px;
13 outline: 5px solid black;
15 .box {
16 height: 100px;
17 width: 200px;
18 margin-bottom: 10px;
19 background-color: green;
20 border-right: 50px solid gray;
21 box-sizing: auto;
22 transform: scalex(2);
23 -webkit-transform-origin: left;
25 .border-box {
26 box-sizing: border-box;
28 </style>
29 </head>
30 <body>
32 <p>
33 <p>Top box should have gray part extending outside the black outline. Lower box should lie inside the outline</p>
34 <div class="container">
35 <div class="box">box-sizing: auto</div>
36 <div class="box border-box">box-sizing: border-box</div>
37 </div>
38 </body>
39 </html>