Bug 82246
Summary: | REGRESSION: r107883 broke loading the mobile Orange.fr site | ||
---|---|---|---|
Product: | WebKit | Reporter: | Simon Fraser (smfr) <simon.fraser> |
Component: | DOM | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED WORKSFORME | ||
Severity: | Normal | CC: | abarth, aestes, ap, ddkilzer, eoconnor, mrakesh, pf, rakesh.makluri, rniwa, simon.fraser, webkit-bug-importer |
Priority: | P2 | Keywords: | InRadar |
Version: | 528+ (Nightly build) | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
URL: | http://mobile.orange.fr/visiteur/PV?PS=HPACMEWIFI |
Simon Fraser (smfr)
Attempting to load http://orange.fr (with an iOS user-agent) fails after r107883. Console shows:
TypeError: 'true' is not a function (evaluating '$("page1").translate("100%","100%")')
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Simon Fraser (smfr)
The page does:
if (wink.isUndefined(HTMLElement.prototype.translate))
HTMLElement.prototype.translate = HTMLElement.prototype.winkTranslate;
Radar WebKit Bug Importer
<rdar://problem/11122949>
Adam Barth
Is wink a library of some sort, or is it specific to this site? If enough sites use this library, we'll probably need to change the spec to use a name other than "translate" for the translation feature.
Andy Estes
(In reply to comment #3)
> Is wink a library of some sort, or is it specific to this site? If enough sites use this library, we'll probably need to change the spec to use a name other than "translate" for the translation feature.
Possibly <http://www.winktoolkit.org>?
Adam Barth
Seems likely:
http://www.winktoolkit.org/documentation/symbols/HTMLElement.html#translate
Simon Fraser (smfr)
orange.fr is getting it via http://omldev.hopto.org:8080/snowdev/js/wink.min.js
Adam Barth
I'll send an email to the WhatWG.
Adam Barth
Sent. Let's see if folks there have thoughts on what we should do here.
Pablo Flouret
I can take care of making any necessary changes if there's a need.
Theresa O'Connor
Adam's thread on the whatwg list: http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2012-March/035173.html
rakesh makluri
Hi Adam,
With this support our product is breaking now. Present we are loading and using the translate() API on HTML elements to translate. But now with this change it is breaking. Is there any way to override this attribute.
We can change the API but, so many existing customers and our internal components are also using this.
Please help with this.
Adam Barth
Hi Rakesh,
From <http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2012-March/035199.html>, I was under the impression that the Wink Toolkit folks have resolved the issue on their end. Have you discussed the issue with Jérôme ?
Generally, it's not a good idea to squat on property names on HTMLElements (like translate). As HTML evolves, it will use more and more of these names.
rakesh makluri
Hi Adam,
Thank you very much for the quick reply. Am not discussed the issue with Jérôme. Am not able to comment in the above link.
I saw a discussion in progress to change the name of the attribute. Is it going to be changed?
Our code exist for last 4 to 5 years, now changing the API means a lot of effort. Need to communicate to all customers and change the internal components code.
And is there any way(hack) to override this attribute?
(In reply to comment #12)
> Hi Rakesh,
>
> From <http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2012-March/035199.html>, I was under the impression that the Wink Toolkit folks have resolved the issue on their end. Have you discussed the issue with Jérôme ?
>
> Generally, it's not a good idea to squat on property names on HTMLElements (like translate). As HTML evolves, it will use more and more of these names.
Adam Barth
Oh, I think I misunderstood your earlier comment. Are you using the Wink Toolkit? It sounds like you're problem might be separate from the Wink issue.
There is an ugly way to hack around the issue. You can delete the translate property from each element. For example:
delete document.body.translate;
alert(document.body.translate);
^^^ Now the translate property is gone.
It's a bit tricky because the property is on each element rather than on the prototype chain. I'm not sure what constraints you face, but that might be one option to explore.
rakesh makluri
Yah my problem is separate from the Wink Toolkit. Thank you for the work around. I tested with sample page it is working fine.
My assumption now is, "translate" attribute name is not going to be chagned?
Thanks & Regards
Rakesh
(In reply to comment #14)
> Oh, I think I misunderstood your earlier comment. Are you using the Wink Toolkit? It sounds like you're problem might be separate from the Wink issue.
>
> There is an ugly way to hack around the issue. You can delete the translate property from each element. For example:
>
> delete document.body.translate;
> alert(document.body.translate);
> ^^^ Now the translate property is gone.
>
> It's a bit tricky because the property is on each element rather than on the prototype chain. I'm not sure what constraints you face, but that might be one option to explore.
Ryosuke Niwa
(In reply to comment #15)
>My assumption now is, "translate" attribute name is not going to be chagned?
As far as I know, we won't be changing the name of the content attribute. So you should eventually rename the function. In general, you should prefix your function names to avoid name conflicts like this.
rakesh makluri
hmmm... :-)
Ok, we will change the name of the API. Thanks you for spending time and giving information.
Regards,
Raeksh
(In reply to comment #16)
> (In reply to comment #15)
> >My assumption now is, "translate" attribute name is not going to be chagned?
>
> As far as I know, we won't be changing the name of the content attribute. So you should eventually rename the function. In general, you should prefix your function names to avoid name conflicts like this.
David Kilzer (:ddkilzer)
Loading orange.fr with an iPhone user agent seems to work now. I don't see that message in the console anymore.
rakesh makluri
Hi Adam,
With the option "delete document.body.translate", am facing issue in Mac Safari6. With this operation not able to delete the "translate" attribute. Where as in chrome it is working fine. Do you have any idea?
(In reply to comment #14)
> Oh, I think I misunderstood your earlier comment. Are you using the Wink Toolkit? It sounds like you're problem might be separate from the Wink issue.
>
> There is an ugly way to hack around the issue. You can delete the translate property from each element. For example:
>
> delete document.body.translate;
> alert(document.body.translate);
> ^^^ Now the translate property is gone.
>
> It's a bit tricky because the property is on each element rather than on the prototype chain. I'm not sure what constraints you face, but that might be one option to explore.
Alexey Proskuryakov
This bug is resolved. If something broke again, please file a new bug.
That said, renaming translate in your code to not conflict with HTML5 is the best way to resolve this.