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

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 <!DOCTYPE html>
     2 <head>
     3   <meta charset="utf-8">
     4   <style type="text/css">
     5     .absthing {
     6       width: 400px;
     7       height: 400px;
     8       position: absolute;
     9       left: 20px;
    10       top: 20px;
    11     }
    12     #d1 {
    13       z-index: 1;
    14     }
    15     #d2 {
    16       z-index: 2;
    17       background-color: rgba(0,0,255,0.5);
    18       border: 1px solid red;
    19     }
    20   </style>
    21 <body>
    22   <div class="absthing" id="d1">
    23     <embed id="test" type="application/x-test">
    24   </div>
    25   <div class="absthing" id="d2">
    26     <p>This is overlaying
    27   </div>

mercurial