tor-browser

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

iframed.sub.html (2621B)


      1 <!doctype html>
      2 
      3 <img
      4 data-desc="img (no src)"
      5 data-narrow=""
      6 data-wide=""
      7 data-no-change>
      8 
      9 <img src=""
     10 data-desc="img (empty src)"
     11 data-narrow=""
     12 data-wide=""
     13 data-no-change>
     14 
     15 <img src="/images/broken.png?30-{{GET[id]}}"
     16 data-desc="img (src only) broken image"
     17 data-narrow="/images/broken.png?30-{{GET[id]}}"
     18 data-wide="/images/broken.png?30-{{GET[id]}}"
     19 data-no-change>
     20 
     21 <img src="/images/green-1x1.png?40-{{GET[id]}}"
     22 data-desc="img (src only) valid image"
     23 data-narrow="/images/green-1x1.png?40-{{GET[id]}}"
     24 data-wide="/images/green-1x1.png?40-{{GET[id]}}"
     25 data-no-change>
     26 
     27 <img srcset="/images/broken.png?50-{{GET[id]}}"
     28 data-desc="img (srcset 1 cand) broken image"
     29 data-narrow="/images/broken.png?50-{{GET[id]}}"
     30 data-wide="/images/broken.png?50-{{GET[id]}}"
     31 data-no-change>
     32 
     33 <img srcset="/images/green-1x1.png?60-{{GET[id]}}"
     34 data-desc="img (srcset 1 cand) valid image"
     35 data-narrow="/images/green-1x1.png?60-{{GET[id]}}"
     36 data-wide="/images/green-1x1.png?60-{{GET[id]}}"
     37 data-no-change>
     38 
     39 <picture>
     40 <source media="(max-width:500px)" srcset="/images/broken.png?70-{{GET[id]}}">
     41 <img src="/images/broken.png?71-{{GET[id]}}"
     42 data-desc="picture: source (max-width:500px) broken image, img broken image"
     43 data-narrow="/images/broken.png?70-{{GET[id]}}"
     44 data-wide="/images/broken.png?71-{{GET[id]}}">
     45 </picture>
     46 
     47 <picture>
     48 <source media="(max-width:500px)" srcset="/images/broken.png?80-{{GET[id]}}">
     49 <img src="/images/green-2x2.png?81-{{GET[id]}}"
     50 data-desc="picture: source (max-width:500px) broken image, img valid image"
     51 data-narrow="/images/broken.png?80-{{GET[id]}}"
     52 data-wide="/images/green-2x2.png?81-{{GET[id]}}">
     53 </picture>
     54 
     55 <picture>
     56 <source media="(max-width:500px)" srcset="/images/green-1x1.png?90-{{GET[id]}}">
     57 <img src="/images/broken.png?91-{{GET[id]}}"
     58 data-desc="picture: source (max-width:500px) valid image, img broken image"
     59 data-narrow="/images/green-1x1.png?90-{{GET[id]}}"
     60 data-wide="/images/broken.png?91-{{GET[id]}}">
     61 </picture>
     62 
     63 <picture>
     64 <source media="(max-width:500px)" srcset="/images/green-1x1.png?100-{{GET[id]}}">
     65 <img src="/images/green-2x2.png?101-{{GET[id]}}"
     66 data-desc="picture: source (max-width:500px) valid image, img valid image"
     67 data-narrow="/images/green-1x1.png?100-{{GET[id]}}"
     68 data-wide="/images/green-2x2.png?101-{{GET[id]}}">
     69 </picture>
     70 
     71 <picture>
     72 <source media="(max-width:500px)" srcset="/images/green-1x1.png?110-{{GET[id]}}">
     73 <img src="/images/green-1x1.png?110-{{GET[id]}}"
     74 data-desc="picture: same URL in source (max-width:500px) and img"
     75 data-narrow="/images/green-1x1.png?110-{{GET[id]}}"
     76 data-wide="/images/green-1x1.png?110-{{GET[id]}}"
     77 data-no-change>
     78 </picture>