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

Unified Diff: LayoutTests/http/tests/incremental/resources/transform.xsl

Issue 27394002: Process decoded bytes when in stopped (but not detached) state (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rename test, add comment Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/incremental/resources/transform.xsl
diff --git a/LayoutTests/fast/parser/resources/xslt-with-html.xsl b/LayoutTests/http/tests/incremental/resources/transform.xsl
similarity index 53%
copy from LayoutTests/fast/parser/resources/xslt-with-html.xsl
copy to LayoutTests/http/tests/incremental/resources/transform.xsl
index 3f41f04ad3f0274fe7690be2fe0fd40bb0056c3d..bdd990b220b2ce066539bee161a3166e739a9044 100644
--- a/LayoutTests/fast/parser/resources/xslt-with-html.xsl
+++ b/LayoutTests/http/tests/incremental/resources/transform.xsl
@@ -1,11 +1,12 @@
-<?xml version='1.0' encoding='utf-8'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
- <xsl:template match="//*">
- <script>
+ <xsl:template match="RESULT">
+ <html>
+ <script>
if (window.testRunner)
- testRunner.dumpAsText();
- </script>
- <div>PASS</div>
+ testRunner.dumpAsText();
+ </script>
+ PASSED
+ </html>
</xsl:template>
</xsl:stylesheet>

Powered by Google App Engine
This is Rietveld 408576698