Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / editing / selection / select-all-002.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 
33 <br>
34 are created equal. Now we are engaged in a
35 great civil war, testing whether that nation, or any nation, so
36 conceived, and so dedicated, can long endure. We are met here on a great
37 <br>
38 battlefield of that war. We have come to dedicate a portion of it as a
39 final resting place for those who here gave their lives that that nation
40 might live. It is altogether fitting and proper that we should do this.
41 <br>
42 Four score and seven years ago our fathers brought forth, upon this
43 continent, a new nation, conceived in Liberty, and dedicated to the
44 proposition that all men are created equal.
45 </div>
46 </div>
47
48 <script>
49 runEditingTest();
50 </script>
51
52 </body>
53 </html>