mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
24 lines
899 B
HTML
24 lines
899 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: Outline-left is not valid</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/ui.html#dynamic-outlines">
|
|
<meta name="flags" content="invalid">
|
|
<meta name="assert" content="Outline does not support setting individual values for the outline like 'outline-left'.">
|
|
<style type="text/css">
|
|
div
|
|
{
|
|
background: black;
|
|
height: 100px;
|
|
margin: 40px;
|
|
outline-left: 10px solid red;
|
|
width: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if there is no red visible on the page.</p>
|
|
<div></div>
|
|
</body>
|
|
</html> |