mirror of
https://github.com/servo/servo.git
synced 2025-06-27 18:43:40 +01:00
20 lines
581 B
HTML
20 lines
581 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Border Image: border-image-repeat with SVG content</title>
|
|
<link rel="author" title="Ethan Lin" href="mailto:ethlin@mozilla.com">
|
|
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
|
</head>
|
|
<body>
|
|
<svg width='64' height='48' xmlns="http://www.w3.org/2000/svg" version="1.1">
|
|
<g fill='blue' stroke-width='0'>
|
|
<path d='M2 2h4v44H2z'/>
|
|
<path d='M2 2h60v4H2z'/>
|
|
<path d='M58 2h4v44h-4z'/>
|
|
<path d='M2 42h60v4H2zM8'/>
|
|
</g>
|
|
</svg>
|
|
</body>
|
|
</html>
|
|
|