Bug 1614348 Comment 2 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

I think this is a devtools bug, perhaps? (Or a bug in an API that devtools uses?)

If you use the console to *set* the style as well as to get it, then you get expected results. i.e. with some element selected:
```
$0.style.fontFamily = '"Font Awesome\ 5 Solid"'
$0.style.fontFamily
```

That ^^ produces this output, which is correct I think:
```
"\"Font Awesome 5 Solid\""
```
I think this is a devtools rules-view bug, perhaps? (Or a bug in an API that devtools uses?)

If you use the console to *set* the style as well as to get it, then you get expected results. i.e. with some element selected:
```
$0.style.fontFamily = '"Font Awesome\ 5 Solid"'
$0.style.fontFamily
```

That ^^ produces this output, which is correct I think:
```
"\"Font Awesome 5 Solid\""
```

Back to Bug 1614348 Comment 2