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

Unified Diff: LayoutTests/dart/Encoding.html

Issue 1532413002: Added Dartium changes onto 45.0.2454.104 (Closed) Base URL: http://src.chromium.org/blink/branches/chromium/2454
Patch Set: Created 5 years 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/dart/Encoding-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/dart/Encoding.html
diff --git a/LayoutTests/dart/Encoding.html b/LayoutTests/dart/Encoding.html
new file mode 100644
index 0000000000000000000000000000000000000000..0c9dac202f4f6e36fc91d2791aae7d9405e3afd9
--- /dev/null
+++ b/LayoutTests/dart/Encoding.html
@@ -0,0 +1,33 @@
+
+<head>
+<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=koi8-r">
+</head>
+<body>
+
+<div id="data">
+&#1055;&#1088;&#1086;&#1077;&#1082;&#1090;&#1099; &#1087;&#1086; &#1082;&#1086;&#1084;&#1087;&#1080;&#1083;&#1103;&#1094;&#1080;&#1080; &#1082;&#1086;&#1076;&#1072; &#1085;&#1072; &#1103;&#1079;&#1099;&#1082;&#1072;&#1093; Clojure &#1080; Pascal &#1074; JavaScript-&#1087;&#1088;&#1077;&#1076;&#1089;&#1090;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077;
+</div>
+
+<script type="application/dart">
+import 'dart:html';
+
+void main() {
+ Element body = document.body;
+
+ Element e2 = document.query('#data');
+ String content = e2.innerHtml;
+
+ Element e1 = new Element.tag('div');
+ e1.innerHtml = content;
+ body.nodes.add(e1);
+}
+
+</script>
+
+<script>
+ if (window.testRunner)
+ window.testRunner.dumpAsText();
+</script>
+
+</body>
+</html>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/dart/Encoding-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698