https://github.com/mozilla/gecko-dev
Raw File
Tip revision: bf723d9a60b88850e34451e5b456051dc41c7780 authored by ffxbld on 08 October 2014, 14:36:25 UTC
Added FENNEC_33_0_RELEASE FENNEC_33_0_BUILD1 tag(s) for changeset 6c5695130efc. DONTBUILD CLOSED TREE a=release
Tip revision: bf723d9
border_radius_hit_testing_iframe.html
<!DOCTYPE HTML>
<title>border-radius hit testing</title>
<style>

  body { margin: 0; }

  #one, #two {
    border-radius: 100px 60px 40px 120px / 40px 60px 60px 80px;
    margin-bottom: 100px;
  }

  #two { overflow: hidden }

  #one, #two > div {
    height: 200px;
    background: blue;
    cursor: progress;
  }

  #one:hover, #two > div:hover {
    background: fuchsia;
  }

</style>
<body>
<div id="one"></div>
<div id="two"><div></div></div>
back to top