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

Side by Side Diff: LayoutTests/dart/Encoding.html

Issue 9188009: Things to unfork. (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Created 8 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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:dom');
13
14 void main() {
15 if (null !== layoutTestController) {
16 layoutTestController.dumpAsText();
17 }
18
19 HTMLElement body = document.body;
20
21 HTMLElement e2 = document.getElementById('data');
22 String content = e2.innerHTML;
23
24 HTMLElement e1 = document.createElement('div');
25 e1.innerHTML = content;
26 body.appendChild(e1);
27 }
28
29 </script>
30
31 <script>
32 // Fake script to trigger Dart execution.
33 </script>
34
35 </body>
36 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/dart/Encoding-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698