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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/dart/Encoding-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1
2 <head>
3 <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=koi8-r">
4 </head>
5 <body>
6
7 <div id="data">
8 &#1055;&#1088;&#1086;&#1077;&#1082;&#1090;&#1099; &#1087;&#1086; &#1082;&#1086;& #1084;&#1087;&#1080;&#1083;&#1103;&#1094;&#1080;&#1080; &#1082;&#1086;&#1076;&#1 072; &#1085;&#1072; &#1103;&#1079;&#1099;&#1082;&#1072;&#1093; Clojure &#1080; P ascal &#1074; JavaScript-&#1087;&#1088;&#1077;&#1076;&#1089;&#1090;&#1072;&#1074 ;&#1083;&#1077;&#1085;&#1080;&#1077;
9 </div>
10
11 <script type="application/dart">
12 import 'dart:html';
13
14 void main() {
15 Element body = document.body;
16
17 Element e2 = document.query('#data');
18 String content = e2.innerHtml;
19
20 Element e1 = new Element.tag('div');
21 e1.innerHtml = content;
22 body.nodes.add(e1);
23 }
24
25 </script>
26
27 <script>
28 if (window.testRunner)
29 window.testRunner.dumpAsText();
30 </script>
31
32 </body>
33 </html>
OLDNEW
« 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