2014-05-05 21:20:36 +09:00
|
|
|
/**
|
|
|
|
* Detect creation of <embed> and <object> tags.
|
|
|
|
*/
|
2020-08-29 23:35:27 +09:00
|
|
|
@-webkit-keyframes pdfjs-detected-object-or-embed { from { /* empty */ } }
|
|
|
|
@keyframes pdfjs-detected-object-or-embed { from { /* empty */ } }
|
2014-05-05 21:20:36 +09:00
|
|
|
object, embed {
|
|
|
|
-webkit-animation-delay: 0s !important;
|
|
|
|
-webkit-animation-name: pdfjs-detected-object-or-embed !important;
|
|
|
|
-webkit-animation-play-state: running !important;
|
|
|
|
animation-delay: 0s !important;
|
|
|
|
animation-name: pdfjs-detected-object-or-embed !important;
|
|
|
|
animation-play-state: running !important;
|
|
|
|
}
|