partially-opaque-form-elements.html 658 B

123456789101112131415161718192021222324252627
  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. <div style="background-color:skyblue; padding:3px;">
  8. In the next paragraph you should see a partially opaque sequence including:
  9. <ol>
  10. <li>The word "Before"</li>
  11. <li>A checkbox</li>
  12. <li>A radio button</li>
  13. <li>The world "After"</li>
  14. </ol>
  15. If this test is failing you might only see the word "Before."
  16. </div>
  17. <p>
  18. Before
  19. <input value="Checkbox" type="checkbox">
  20. <input value="Radio" type="radio">
  21. After
  22. </p>
  23. </body>
  24. </html>