Has Opera 10 beta dropped support for the background-size CSS rule?

2

Opera 9.5, according to this Opera Dev article, and also this MDC article has support for the CSS 3 background-size rule through -o-background-size vendor extension. I've been playing around today with the code from the MDC article and have got it to work in Firefox and Chromium, but it doesn't work in Opera 10 Beta 2:

body {
    background-attachment: fixed;
    background-image: url('bg-image-1.jpg');
    background-size: 100% 100%;
    -moz-background-size: 100% 100%;           /* Gecko 1.9.2 (Firefox 3.6) */
    -o-background-size: 100% 100%;             /* Opera 9.5 */
    -webkit-background-size: 100% 100%;        /* Safari 3.0 */
    -khtml-background-size: 100% 100%;         /* Konqueror 3.5.4 */
    -moz-border-image: url('bg-image-1.jpg') 0;/* Gecko 1.9.1 (Firefox 3.5) */
}

In fact, Opera's own example doesn't seem to work in Opera 10 Beta 2, which leads me to believe support has somehow been removed, but there's no mention of it in the beta 1 or beta 2 changelogs.

Can someone who still has Opera 9.5 installed check the the Opera example works (should see green bars at the sides of the page)? And if anyone's seen any documentation for changes in background-size support between 9.5 and 10 beta please post a link.

Here's what it looks like in the Linux build of 10b2:

Screenshot in Opera 10b2 on Ubuntu

robertc

Posted 2009-08-08T21:00:05.587

Reputation: 729

Question was closed 2019-12-16T19:25:18.703

The linux beta is probably a different build number where the property was temporarily removed or just buggy. – DisgruntledGoat – 2009-08-11T14:02:02.483

Didn't work in the beta1 either - I checked before upgrading it. – robertc – 2009-08-11T17:01:46.540

I'm voting to close this question as off-topic because it is no longer valid – Sathyajith Bhat – 2019-12-16T19:25:18.703

Just had another look at this thread - any improvement with Opera 11? – Ant – 2011-05-09T15:19:51.013

@Ant background-size is working for me in Opera 11.10, although the Opera example I linked to doesn't work because that only lists -o-background-size – robertc – 2011-05-09T16:15:18.923

Linux 10.0 released, -o-background-size still broken :( – robertc – 2009-09-01T23:28:53.663

Answers

1

For everyone's future reference, background-size is supported in the Linux build of the Opera 10.50 pre-alpha. Although -o-background-size is no longer supported, so their example still doesn't work, by my ones do ;)

robertc

Posted 2009-08-08T21:00:05.587

Reputation: 729

0

Opera 9.64:

AW3S0ME ALT T3XT DESCR1PTION

hyperslug

Posted 2009-08-08T21:00:05.587

Reputation: 12 882

Thanks. For me the image repeats across the page so there's a green bar in the middle. I've logged a defect with Opera, see what happens. – robertc – 2009-08-08T22:34:01.023