layout/reftests/border-radius/curved-borders-all-styles.html
author Tom Schuster <tschuster@mozilla.com>
Thu, 17 Jul 2025 07:01:33 +0000 (12 hours ago)
changeset 796956 2732dfd8c3b2071a053c85819299033f50ec5d48
parent 52297 c1cc7b565dc740206b5b46b613f99da334195329
permissions -rw-r--r--
Bug 1977645 - Remove svg.use-element.data-url-href.allowed pref. r=longsonr Differential Revision: https://phabricator.services.mozilla.com/D257534
<html>

<head>
 <title>testcase for bug #382721</title>
<style>
 div {
	background: beige;
	margin: 1ex;
	padding: 1ex;
	border-radius: 3ex;
	}
</style>
<script>
 function ini() {
  var s,i,d;
  s=['none','hidden','dotted','dashed','solid',
     'double','groove','ridge','inset','outset'];
  for (i=0; i<s.length; i++) {
   d=document.createElement('div');
   d.style.border=d.innerHTML=s[i];
   document.body.appendChild(d);
 }}
</script>
</head>

<body onload="ini()"></body>

</html>