按上面测试页上的“继承”按钮。
通过foreColor
向inherit
color
运行execCommand
命令后,显示为奇怪的颜色 - #BA0000。 (在Chrome 30中测试过)
看起来Chrome试图用rgba(0, 0, 0, 0)
设置文本颜色,但是它被解析为最后六个字符 - 'b,a,0,0,0,0'。所以转向#BA0000。
但是inherit
backColor
命令的效果非常好。
这是Chrome的错误吗?或是否禁止在inherit
命令上使用foreColor
?
新增)
我只是使用styleWithCSS
而不是处理<font color>
的东西。
应用styleWithCSS
后,格式化命令使用带有<span>
元素的css属性,而不是<font>
。