blob: 055d85971a4de62393e86dd5fed30be13db6d9d8 [file] [log] [blame]
<head>
<style type="text/css">
#testblock {
width: 200px;
height: 200px;
/* invalid width and height */
width: 500px garbage;
height: 500px 200px;
/* Font-size */
font-size: 14px;
/* Invalid font-sizes */
font-size: 36px garbage;
float: left;
float: right garbage;
/* Trying colors */
/* The !important is here so you don't break this while fixing this bug */
color: white !important;
color: black;
background: darkgreen;
/* the color and background-color below should be invalidated,
so the text should be green */
color: black garbage !important;
background-color: darkred garbage;
background-repeat: no-repeat;
/* These ones actually get invalidated correctly */
background: url('http://webkit.opendarwin.org/images/welcomeopen.gif') garbage;
background-repeat: garbage repeat-x;
/* Trying text and font properties */
font-family: sans-serif;
font-weight: 900;
text-decoration: none;
word-spacing: normal;
letter-spacing: normal;
text-align: left;
direction: ltr;
text-transform: lowercase;
font-variant: normal;
white-space: normal;
/* Invalid text and font properties */
/* This one actually DOES get invalidated */
font: "Comic Sans MS" woopdidoo;
font-weight: 500 500;
/* This one actually DOES get invalidated */
text-decoration: line-through garbage;
word-spacing: 10px garbage;
letter-spacing: 5px garbage;
text-align: right left;
direction: rtl garbage;
text-transform: capitalize garbage;
font-variant: small-caps garbage;
white-space: pre garbage;
outline: none;
outline: red 3px dotted garbage;
outline: red solid garbage;
overflow: hidden;
overflow: visible scroll;
}
#Content {
display: inline;
/* invalid */
display: block garbage;
/* All margins, paddings and borders until the next comment are incorrect and
should be invalidated, resulting in padding and margin 0 */
margin-left: 50px garbage;
margin-right: 50px garbage;
margin-top: 50px garbage;
margin-bottom: 50px garbage;
padding-left: 50px garbage;
padding-right: 50px garbage;
padding-top: 50px garbage;
padding-bottom: 50px garbage;
border: 1px solid garbage;
border-top: yellow garbage;
border-right: blue garbage;
border-bottom: yellow garbage;
border-left: blue garbage;
/* The values below get invalidated correctly but are in here
for completeness. */
margin: 100px 100px 100px 100px garbage;
padding: 100px 100px 100px 100px garbage;
}
</style>
</head>
<body>
<p><a href="https://bugs.webkit.org/show_bug.cgi?id=7118">bug 7118</a>: Wrong property values do not get invalidated correctly.</p>
<div id="Content">
<div id="testblock">
This text should be
left-aligned, all lower-case,
normal font, white, 14px,
bold, normally spaced
and wrapped, in a
darkgreen 200x200px div
in the top left corner
with no borders or
outlines.
</div>
</div>
</body>