WebCore/manual-tests/partially-opaque-text-input.html
changeset 0 4f2f89ce4247
equal deleted inserted replaced
-1:000000000000 0:4f2f89ce4247
       
     1 <html>
       
     2 <style>
       
     3     body { opacity: 0.5; }
       
     4 </style>
       
     5 <body> 
       
     6 <p><b>BUG ID:</b> <a href="https://bugs.webkit.org/show_bug.cgi?id=41113">Bugzilla bug 41113</a> [WinCairo] Text box backgrounds do not render in partially opaque layers</p>
       
     7 
       
     8 <div style="background-color:skyblue; padding:3px;">
       
     9 In the next paragraph you should see a partially opaque sequence including:
       
    10 <ol>
       
    11 <li>The word "Before"</li>
       
    12 <li>A text box</li>
       
    13 <li>The world "After"</li>
       
    14 </ol>
       
    15 If this test is failing you will not see the text box border.
       
    16 </div>
       
    17 
       
    18 <p>
       
    19 Before
       
    20 <input type="text"/>
       
    21 After
       
    22 </p>
       
    23 
       
    24 </body> 
       
    25 </html>