mirror of
https://github.com/servo/servo
synced 2026-04-29 10:57:43 +02:00
19 lines
798 B
HTML
19 lines
798 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: Parsing valid URIs with white space and no quotes</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#uri">
|
|
<meta name="flags" content="">
|
|
<meta name="assert" content="A url function is valid if it is 'url(', followed by the URI, followed by ')', even with white space between.">
|
|
<style type="text/css">
|
|
@import url(
|
|
support/uri-001.css
|
|
);
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if the "Filler Text" below is green.</p>
|
|
<p id="p1">Filler Text</p>
|
|
</body>
|
|
</html> |