Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: LayoutTests/editing/style/justify-left-crash.html

Issue 960353002: Handle null baseStyle in getPropertiesNotIn (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add test Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <HTML hidden>
3 <style>
4 html, head, style {
5 display: block;
6 }
7 </style>
8 <script>
9 document.designMode = 'on';
10 document.execCommand("selectAll", true , null);
yosin_UTC9 2015/03/10 05:27:07 nit: We don't need to have |true| and |null|. "Sel
rwlbuis 2015/03/10 23:44:21 Done.
11 document.execCommand("italic", false , null);
yosin_UTC9 2015/03/10 05:27:07 nit: We don't need to have |false| and |null|. The
rwlbuis 2015/03/10 23:44:21 Done.
12 document.execCommand("justifyLeft", false , null);
yosin_UTC9 2015/03/10 05:27:07 nit: We don't need to have |false| and |null|. The
rwlbuis 2015/03/10 23:44:21 Done.
13 </script>
yosin_UTC9 2015/03/10 05:27:07 Could you add output of this test to avoid empty e
rwlbuis 2015/03/10 23:44:21 I tried but it is hard, the hidden attribute in ht
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/style/justify-left-crash-expected.html » ('j') | Source/core/editing/EditingStyle.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698