This version fixes a flipping bug. Bug: T288943 Depends-On: Ida34372a4e5acb3147d83c7a1d008850c8382e32 Change-Id: I0528443e4eae0338f5a37491352db03944c6bd4c
14 lines
601 B
CSS
14 lines
601 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); }
|
|
|
|
.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); }
|
|
|
|
/* Complex test for T288943 */
|
|
/*@noflip*/ .selector-ltr[ data-foo='bar' ]:empty { border-left: 10px none; border-right: 0 none; }
|