| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @fileoverview Contains html snippets shared by multiple tests. | 6 * @fileoverview Contains html snippets shared by multiple tests. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 function toolbarDoc() {/*! | 9 function toolbarDoc() { /*! |
| 10 <div tabindex=0 role="toolbar"> | 10 <div tabindex=0 role="toolbar"> |
| 11 <button>Back</button> | 11 <button>Back</button> |
| 12 <button>Forward</button> | 12 <button>Forward</button> |
| 13 </div> | 13 </div> |
| 14 */} | 14 */ |
| 15 } |
| 15 | 16 |
| 16 function headingDoc() {/*! | 17 function headingDoc() { /*! |
| 17 <h1>World</h1> | 18 <h1>World</h1> |
| 18 <p>Canada</p> | 19 <p>Canada</p> |
| 19 <h2>United States</h2> | 20 <h2>United States</h2> |
| 20 <a href="whitehouse.gov">White House</a> | 21 <a href="whitehouse.gov">White House</a> |
| 21 */} | 22 */ |
| 23 } |
| OLD | NEW |