Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / editing / selection / select-all-001.html
1 <html> 
2 <head>
3
4 <style>
5 body { overflow:hidden; }
6 .editing { 
7     border: solid red 50px;
8     font-size: 24px; 
9     line-height: 48px; 
10     padding: 24px; 
11     margin: 64px;
12     width: 600px; 
13 }
14 </style>
15 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
16
17 <script>
18
19 function editingTest() {
20     selectAllCommand();    
21 }
22
23 </script>
24
25 <title>Editing Test</title> 
26 </head> 
27 <body>
28 <div contenteditable id="root" class="editing">
29 <div id="test">
30 Four score and seven years ago our fathers brought forth, upon this
31 continent, a new nation, conceived in Liberty, and dedicated to the
32 proposition that all men are created equal. Now we are engaged in a
33 great civil war, testing whether that nation, or any nation, so
34 conceived, and so dedicated, can long endure. We are met here on a great
35 battlefield of that war. We have come to dedicate a portion of it as a
36 final resting place for those who here gave their lives that that nation
37 might live. It is altogether fitting and proper that we should do this.
38 Four score and seven years ago our fathers brought forth, upon this
39 continent, a new nation, conceived in Liberty, and dedicated to the
40 proposition that all men are created equal.
41 </div>
42 </div>
43
44 <script>
45 runEditingTest();
46 </script>
47
48 </body>
49 </html>