content/base/test/csp/file_CSP_frameancestors_main.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 <html>
     2   <head>
     3     <title>CSP frame ancestors tests</title>
     5     <!-- this page shouldn't have a CSP, just the sub-pages. -->
     6     <script src='file_CSP_frameancestors_main.js'></script>
     8   </head>
     9   <body>
    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/>
    15 <tt>  aa_block:     /* innermost frame denies a */</tt><br/>
    16 <iframe id='aa_block'></iframe><br/>
    18 <tt>  ab_allow:     /* innermost frame allows a */</tt><br/>
    19 <iframe id='ab_allow'></iframe><br/>
    21 <tt>  ab_block:     /* innermost frame denies a */</tt><br/>
    22 <iframe id='ab_block'></iframe><br/>
    24 <tt>  aba_allow:    /* innermost frame allows b,a */</tt><br/>
    25 <iframe id='aba_allow'></iframe><br/>
    27 <tt>  aba_block:    /* innermost frame denies b */</tt><br/>
    28 <iframe id='aba_block'></iframe><br/>
    30 <tt>  aba2_block:   /* innermost frame denies a */</tt><br/>
    31 <iframe id='aba2_block'></iframe><br/>
    33 <tt>  abb_allow:    /* innermost frame allows b,a */</tt><br/>
    34 <iframe id='abb_allow'></iframe><br/>
    36 <tt>  abb_block:    /* innermost frame denies b */</tt><br/>
    37 <iframe id='abb_block'></iframe><br/>
    39 <tt>  abb2_block:   /* innermost frame denies a */</tt><br/>
    40 <iframe id='abb2_block'></iframe><br/>
    43   </body>
    44 </html>

mercurial