Re: Fwd: [blink-dev] Intent to Ship: Plugin Power Saver Poster Images

2015-02-08 Thread Chris Peterson
Safari on OS X 10.10 also has a "Safari Power Saver" mode for plugins: "The Safari Power Saver feature recognizes the difference between what you came to see and the stuff you probably didn’t. If the content is front and center, it plays as usual. But if it’s off in the margins, Safari Power S

Re: Intent to ship: CSS Ruby

2015-02-08 Thread 一丝冰凉
在 2015年2月8日星期日 UTC+8上午10:38:11,Xidorn Quan写道: > Before the next merge day, I intent to turn on CSS Ruby by default on all > platforms if all rest blockers can be fixed by then. It has been developed > behind |layout.css.ruby.enabled| for a while. > > This would add 5 new values to |display| proper

Re: Flexbox bug with word-wrap?

2015-02-08 Thread Karl Dubost
Le 9 févr. 2015 à 00:57, Daniel Holbert a écrit : > Blink bug for that: > https://code.google.com/p/chromium/issues/detail?id=426898 > > (There's probably a webkit version of that bug too but I don't have it > handy right now.) List of Flexbox WebKit bugs https://bugs.webkit.org/show_bug.cgi?id

Re: Flexbox bug with word-wrap?

2015-02-08 Thread Amit Zur
Daniel, Thanks for the quick reply! The anonymous block is what I've missed. Cheers, Amit On Sunday, February 8, 2015 at 5:57:29 PM UTC+2, Daniel Holbert wrote: > Fixed fiddle: > http://jsfiddle.net/eum5bxub/4/ > > Basically what happens here is: > (1) The text gets wrapped in an anonymous bl

Re: Flexbox bug with word-wrap?

2015-02-08 Thread Daniel Holbert
Fixed fiddle: http://jsfiddle.net/eum5bxub/4/ Basically what happens here is: (1) The text gets wrapped in an anonymous block, which is the flex item. (2) We run the flex algorithm, with 150px to divy up. We *try* to shrink that flex item, but we can't because it has (default) "min-width:auto"

Flexbox bug with word-wrap?

2015-02-08 Thread Amit Zur
Hi, See this fiddle: http://jsfiddle.net/eum5bxub/3/ In firefox (version 35) the first box doesn't have wrapped text, but it should. Chrome, Safari & Opera get it right. I'm on Mac OS X 10.10 Did I do anything wrong? Can you verify if this is a bug? Thanks, Amit ___