Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/feature-policy/resources/xslt-document-insertion.xsl

Issue 2905113002: Initialize a default feature policy for all documents (Closed)
Patch Set: Nits Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3 <xsl:template match="/">
4 <html>
5 <title>Checks that an XSLT-generated HTML doc allows first-party cookies</ title>
6 <script>
7 if (window.testRunner) {
8 testRunner.waitUntilDone();
9 testRunner.dumpAsText();
10 testRunner.dumpChildFramesAsText();
11 }
12 </script>
13 <body>
14 <iframe allow="payment" src="http://127.0.0.1:8000/feature-policy/resour ces/blank.html"></iframe>
15 </body>
16 </html>
17 </xsl:template>
18 </xsl:stylesheet>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698