tor-browser

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

file_frameancestors_main.html (1293B)


      1 <html>
      2  <head>
      3    <title>CSP frame ancestors tests</title>
      4 
      5    <!-- this page shouldn't have a CSP, just the sub-pages. -->
      6    <script src='file_frameancestors_main.js'></script>
      7 
      8  </head>
      9  <body>
     10 
     11 <!-- These iframes will get populated by the attached javascript. -->
     12 <tt>  aa_allow:   /* innermost frame allows a */</tt><br/>
     13 <iframe id='aa_allow'></iframe><br/>
     14 
     15 <tt>  aa_block:     /* innermost frame denies a */</tt><br/>
     16 <iframe id='aa_block'></iframe><br/>
     17 
     18 <tt>  ab_allow:     /* innermost frame allows a */</tt><br/>
     19 <iframe id='ab_allow'></iframe><br/>
     20 
     21 <tt>  ab_block:     /* innermost frame denies a */</tt><br/>
     22 <iframe id='ab_block'></iframe><br/>
     23 
     24 <tt>  aba_allow:    /* innermost frame allows b,a */</tt><br/>
     25 <iframe id='aba_allow'></iframe><br/>
     26 
     27 <tt>  aba_block:    /* innermost frame denies b */</tt><br/>
     28 <iframe id='aba_block'></iframe><br/>
     29 
     30 <tt>  aba2_block:   /* innermost frame denies a */</tt><br/>
     31 <iframe id='aba2_block'></iframe><br/>
     32 
     33 <tt>  abb_allow:    /* innermost frame allows b,a */</tt><br/>
     34 <iframe id='abb_allow'></iframe><br/>
     35 
     36 <tt>  abb_block:    /* innermost frame denies b */</tt><br/>
     37 <iframe id='abb_block'></iframe><br/>
     38 
     39 <tt>  abb2_block:   /* innermost frame denies a */</tt><br/>
     40 <iframe id='abb2_block'></iframe><br/>
     41 
     42 
     43  </body>
     44 </html>