| Index: third_party/WebKit/LayoutTests/editing/selection/select_all/select_all_in_contenteditable.html | 
| diff --git a/third_party/WebKit/LayoutTests/editing/selection/select_all/select_all_in_contenteditable.html b/third_party/WebKit/LayoutTests/editing/selection/select_all/select_all_in_contenteditable.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..f1f6d5b5833d7b1aea3723283d701247831c022a | 
| --- /dev/null | 
| +++ b/third_party/WebKit/LayoutTests/editing/selection/select_all/select_all_in_contenteditable.html | 
| @@ -0,0 +1,13 @@ | 
| +<!doctype html> | 
| +<script src="../../../resources/testharness.js"></script> | 
| +<script src="../../../resources/testharnessreport.js"></script> | 
| +<script src="../../assert_selection.js"></script> | 
| +<div id="log"></div> | 
| +<script> | 
| +test(() => { | 
| +  assert_selection( | 
| +    'foo<div contenteditablele>|bar</div>baz', | 
| +    'selectAll', | 
| +    '^foo<div contenteditablele>bar</div>baz|'); | 
| +}, '"Select All" when in an editable area selects the whole containing document'); | 
| +</script> | 
|  |