Closed
Bug 567999
Opened 14 years ago
Closed 14 years ago
Refunding a payment on paypal no longer works
Categories
(Core :: DOM: CSS Object Model, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 567938
People
(Reporter: Natch, Unassigned)
Details
Attachments
(1 file)
3.99 KB,
application/x-javascript
|
Details |
As of recently refunding a payment on paypal doesn't work. I get this error in the console (although I can't be %100 sure it is related):
Error: css[i].href is null
Source File: https://www.paypalobjects.com/WEBSCR-630-20100506-1/js/autoTooltips.js
Line: 101
Comment 1•14 years ago
|
||
Using which build? Can you hunt down a regression range, since doing that involves having a paypal account?
Do you see any "the stylesheet was not loaded" errors in the console?
Reporter | ||
Comment 2•14 years ago
|
||
(In reply to comment #1)
> Using which build? Can you hunt down a regression range, since doing that
> involves having a paypal account?
Latest trunk, built from: http://hg.mozilla.org/mozilla-central/rev/da9e50cb4091
I'll try to hunt down a regression-range when I have some time.
> Do you see any "the stylesheet was not loaded" errors in the console?
No.
I really am not sure the error has anything to do with the failure, it may just be a red herring. It's the only error I saw though...
Comment 3•14 years ago
|
||
> Latest trunk,
Could be a dup of the form.submit not working bug.
Reporter | ||
Comment 4•14 years ago
|
||
It is indeed, here's the code in question:
function safeSubmit(f) {
for (i = 1; i < f.elements.length; i++) {
if (f.elements[i].type == "submit") {
f.elements[i].disabled = true;
}
}
f.submit();
safeSubmit = blockIt;
return false;
}
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → DUPLICATE
Updated•14 years ago
|
blocking2.0: ? → ---
Reporter | ||
Updated•14 years ago
|
Keywords: regressionwindow-wanted,
testcase-wanted
You need to log in
before you can comment on or make changes to this bug.
Description
•