Index: wp-includes/js/colorpicker.js
===================================================================
--- wp-includes/js/colorpicker.js	(revision 56808)
+++ wp-includes/js/colorpicker.js	(working copy)
@@ -284,7 +284,7 @@
 	this.getXYPosition(anchorname);
 	this.x += this.offsetX;
 	this.y += this.offsetY;
-	if (!this.populated && (this.contents != "")) {
+	if (!this.populated && (this.contents !== "")) {
 		this.populated = true;
 		this.refresh();
 		}
Index: wp-includes/js/tinymce/utils/form_utils.js
===================================================================
--- wp-includes/js/tinymce/utils/form_utils.js	(revision 56808)
+++ wp-includes/js/tinymce/utils/form_utils.js	(working copy)
@@ -129,7 +129,7 @@
     var stylesAr = styles.split(';');
 
     for (var i = 0; i < stylesAr.length; i++) {
-      if (stylesAr != "") {
+      if (stylesAr !== "") {
         var key, value;
 
         key = stylesAr[i].split('=')[0];
