layout/reftests/border-radius/curved-borders-all-styles.html

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1 <html>
michael@0 2
michael@0 3 <head>
michael@0 4 <title>testcase for bug #382721</title>
michael@0 5 <style>
michael@0 6 div {
michael@0 7 background: beige;
michael@0 8 margin: 1ex;
michael@0 9 padding: 1ex;
michael@0 10 border-radius: 3ex;
michael@0 11 }
michael@0 12 </style>
michael@0 13 <script>
michael@0 14 function ini() {
michael@0 15 var s,i,d;
michael@0 16 s=['none','hidden','dotted','dashed','solid',
michael@0 17 'double','groove','ridge','inset','outset'];
michael@0 18 for (i=0; i<s.length; i++) {
michael@0 19 d=document.createElement('div');
michael@0 20 d.style.border=d.innerHTML=s[i];
michael@0 21 document.body.appendChild(d);
michael@0 22 }}
michael@0 23 </script>
michael@0 24 </head>
michael@0 25
michael@0 26 <body onload="ini()"></body>
michael@0 27
michael@0 28 </html>
michael@0 29

mercurial