mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
Automatic update from web-platform-testsMerge pull request #13267 from web-platform-tests/sync_63df09482d5de0087f766774f9b58815540704b6 Merge pull request #13267 from sync_63df09482d5de0087f766774f9b58815540704b6 -- wpt-commits: ead79336e78ca821061c2d58b09a57f911536dba wpt-pr: 13267
16 lines
367 B
HTML
16 lines
367 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>border-image with different widths</title>
|
|
<style>
|
|
#ref {
|
|
width: 360px;
|
|
height: 240px;
|
|
border-style: solid;
|
|
border-width: 40px 40px 20px 0px;
|
|
border-image-source: url("support/border.png");
|
|
border-image-slice: 27;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div id="ref"></div>
|
|
</body>
|