mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
401 B
HTML
19 lines
401 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Test different types of values with border radius</title>
|
|
<style>
|
|
div { width: 200px;
|
|
height: 200px;
|
|
background: green;
|
|
border: 10px dashed black}
|
|
|
|
/* Test interpreted values */
|
|
#test1 { -moz-border-radius: 2em 10px 3em / 10px 0.5em }
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="test1"></div>
|
|
</body></html>
|