corner-joins-2-ref.xhtml 642 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0"?>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>border</title>
  5. <style type="text/css">
  6. body {
  7. filter: url('../filters.svg#NonWhiteToBlack');
  8. }
  9. body > div {
  10. /* filter doesn't change alpha */
  11. background: white;
  12. }
  13. div.test {
  14. width: 154px;
  15. height: 142px;
  16. border-radius: 72px;
  17. background: black;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div>
  23. <div class="test"></div>
  24. </div>
  25. <svg xmlns="http://www.w3.org/2000/svg"
  26. xmlns:xlink="http://www.w3.org/1999/xlink"
  27. version="1.1">
  28. <!-- use an empty g to force filters.svg to load before onload -->
  29. <use xlink:href="../filters.svg#empty" />
  30. </svg>
  31. </body>
  32. </html>