https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 19b92d6d899df8d4bd5e74d88d27ad234092f275 authored by ffxbld on 30 July 2013, 18:07:37 UTC
Added FIREFOX_23_0_RELEASE FIREFOX_23_0_BUILD1 tag(s) for changeset 2c423c4c6d0b. DONTBUILD CLOSED TREE a=release
Tip revision: 19b92d6
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