tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

embed-hidden-attribute.html (826B)


      1 <!DOCTYPE html>
      2 <title>The hidden global presentation attribute within the embed element</title>
      3 <link rel="author" href="mailto:masonf@chromium.org">
      4 <link rel=match  href="embed-hidden-attribute-ref.html">
      5 
      6 This embed should be visible (green box):
      7 <embed src='../../../../images/green-256x256.png' type='image/png'></embed>
      8 
      9 These should not be visible (no red):
     10 <embed hidden          src='../../../../images/fail.gif' type='image/png'></embed>
     11 <embed hidden=""       src='../../../../images/fail.gif' type='image/png'></embed>
     12 <embed hidden="hidden" src='../../../../images/fail.gif' type='image/png'></embed>
     13 <embed hidden="true"   src='../../../../images/fail.gif' type='image/png'></embed>
     14 <embed hidden="yes"    src='../../../../images/fail.gif' type='image/png'></embed>
     15 
     16 <style>
     17 embed {
     18  display:block;
     19 }
     20 </style>