 Chromium Code Reviews
 Chromium Code Reviews Issue 1395693009:
  [Editing][BugFix] Fix if condition in ReplaceSelectionCommand  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master
    
  
    Issue 1395693009:
  [Editing][BugFix] Fix if condition in ReplaceSelectionCommand  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master| Index: third_party/WebKit/LayoutTests/editing/execCommand/534617-crash.html | 
| diff --git a/third_party/WebKit/LayoutTests/editing/pasteboard/insert-font-weight2.html b/third_party/WebKit/LayoutTests/editing/execCommand/534617-crash.html | 
| similarity index 52% | 
| copy from third_party/WebKit/LayoutTests/editing/pasteboard/insert-font-weight2.html | 
| copy to third_party/WebKit/LayoutTests/editing/execCommand/534617-crash.html | 
| index c72b31f7e8080233df7ba4f0aaf683371fccc928..eb7ea16d0c680f5c93ebb8055d0399ca63b26117 100644 | 
| --- a/third_party/WebKit/LayoutTests/editing/pasteboard/insert-font-weight2.html | 
| +++ b/third_party/WebKit/LayoutTests/editing/execCommand/534617-crash.html | 
| @@ -1,23 +1,19 @@ | 
| <!DOCTYPE html> | 
| 
yosin_UTC9
2015/10/19 08:56:57
File name should represent what test doing instead
 | 
| +<html><head> | 
| <script src="../../resources/testharness.js"></script> | 
| <script src="../../resources/testharnessreport.js"></script> | 
| -a | 
| -<style> | 
| -* { | 
| - font-weight:lighter; | 
| -} | 
| -</style> | 
| -a | 
| -<style> | 
| -* { | 
| - font-weight:900; | 
| -} | 
| -</style> | 
| +</head> | 
| +<body> | 
| +<blockquote type="cite"><div>Three</div></blockquote> | 
| +<br> | 
| +"bar" | 
| <div id="log"></div> | 
| <script> | 
| -test(function() { | 
| +test(function () { | 
| document.designMode = 'on'; | 
| document.execCommand("selectAll"); | 
| - document.execCommand("insertOrderedList"); | 
| + document.execCommand("InsertHTML", false, "<blockquote type='cite'>Line 2</blockquote><img>"); | 
| }); | 
| </script> | 
| +</body> | 
| +</html> |