Given that we have entirely separate code for handling one and the other, and given the nature of code comments stuffed inside other structures, this isn't really obvious that they work. And indeed, "/*@noflip*/ /*@embed*/" doesn't work (filed bug 69698). Amazingly, all other combinations do. Change-Id: Ie30bab251eb4abee122c783d057de4102e53d1fc
12 lines
495 B
CSS
12 lines
495 B
CSS
/* All of the combinations should result in the same output in LTR and RTL mode. */
|
|
|
|
/*@noflip*/ .selector { /*@embed*/ background-image: url(simple-ltr.gif); }
|
|
|
|
/*@noflip*/ .selector { background-image: /*@embed*/ url(simple-ltr.gif); }
|
|
|
|
/* Doesn't work! */
|
|
/*.selector { /*@noflip* / /*@embed* / background-image: url(simple-ltr.gif); }*/
|
|
|
|
.selector { /*@embed*/ /*@noflip*/ background-image: url(simple-ltr.gif); }
|
|
|
|
.selector { /*@noflip*/ background-image: /*@embed*/ url(simple-ltr.gif); }
|