layout/reftests/svg/svg-integration/clipPath-html-08.xhtml

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

     1 <!DOCTYPE html>
     2 <!--
     3      Any copyright is dedicated to the Public Domain.
     4      http://creativecommons.org/publicdomain/zero/1.0/
     5 -->
     6 <html xmlns="http://www.w3.org/1999/xhtml">
     7   <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=822014 -->
     8   <head>
     9     <title>Test clip-path on &lt;div&gt; with border</title>
    10     <style>
    12 html, body {
    13   border: 0; margin: 0;
    14 }
    16     </style>
    17   </head>
    18   <body>
    19     <div style="clip-path: url(#cp); width: 200px; height: 200px; background: yellow; border: solid 100px black; margin: 50px;"></div>
    20     <svg xmlns="http://www.w3.org/2000/svg" height="0">
    21       <clipPath id="cp">
    22         <path d="M50,50 150,50 150,150 50,150 z"/>
    23       </clipPath>
    24     </svg>
    25   </body>
    26 </html>

mercurial