﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
10364	Paste from word doesn't do background color	Val		"Pasting content with a highlight/background color from word. The background color doesn't get copied over.

In default.js I found this line that's responsible for background color:

[ /^background-color$/, null, !o ? m(d.colorButton_backStyle, ""color"") : null]

But when looking at what's being pasted, the highlight is actually specified as ""background: somecolor"". 

By adding the following to the code I seem to have fixed the issue:

[ /^background$/, null, !o ? m(d.colorButton_backStyle, ""color"") : null],"	Bug	closed	Normal		Plugin : Paste from Word	4.1	duplicate		
