browser/base/content/test/plugins/plugin_overlayed.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/browser/base/content/test/plugins/plugin_overlayed.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,27 @@
     1.4 +<!DOCTYPE html>
     1.5 +<head>
     1.6 +  <meta charset="utf-8">
     1.7 +  <style type="text/css">
     1.8 +    .absthing {
     1.9 +      width: 400px;
    1.10 +      height: 400px;
    1.11 +      position: absolute;
    1.12 +      left: 20px;
    1.13 +      top: 20px;
    1.14 +    }
    1.15 +    #d1 {
    1.16 +      z-index: 1;
    1.17 +    }
    1.18 +    #d2 {
    1.19 +      z-index: 2;
    1.20 +      background-color: rgba(0,0,255,0.5);
    1.21 +      border: 1px solid red;
    1.22 +    }
    1.23 +  </style>
    1.24 +<body>
    1.25 +  <div class="absthing" id="d1">
    1.26 +    <embed id="test" type="application/x-test">
    1.27 +  </div>
    1.28 +  <div class="absthing" id="d2">
    1.29 +    <p>This is overlaying
    1.30 +  </div>

mercurial