--- old/modules/web/src/main/java/javafx/scene/web/HTMLEditorSkin.java 2016-08-02 22:06:08.054371100 +0530 +++ new/modules/web/src/main/java/javafx/scene/web/HTMLEditorSkin.java 2016-08-02 22:06:07.193261700 +0530 @@ -943,7 +943,7 @@ // if the format value is then we assume that we're dealing with a paragraph, // which seems to correspond with the HTML output we receive. - if ((resetToolbarState || htmlTag.equals("<>") || htmlTag.equalsIgnoreCase("
"))) { + if ((resetToolbarState || htmlTag.equals("<>") || htmlTag.equalsIgnoreCase("
") || htmlTag.equalsIgnoreCase("
"))) { formatComboBox.setValue(resources.getString("paragraph")); } else if (format != null && ! format.equalsIgnoreCase(comboFormatValue)) { formatComboBox.setValue(comboFormatValue);