Closed Bug 144302 Opened 23 years ago Closed 19 years ago

Print selection prints page backwards (mirror image/reversed)

Categories

(Core :: Printing: Output, defect, P3)

x86
Windows 95
defect

Tracking

()

RESOLVED WORKSFORME
Future

People

(Reporter: doctorj, Assigned: rods)

References

()

Details

Attachments

(1 file)

From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Win95; en-US; rv:1.0.0+) Gecko/20020509 BuildID: 2002050908 I was buying StarWars tickets at movietickets.com (do I sound like a newbie yet? :) and I successfully purchased my tickets and wanted to print the confirmation page; I highlighted the main text panel with the mouse and chose File | Print then Print Selection. The page took a long time to print and came out perfectly reversed left-to-right: text, images, even the header and footer. That is, I hold the printed page up to a mirror and it looks normal. I tried again printing the whole page instead of just the selection and it came out fine. I did not try again because I would have to buy the tickets again, and I assume you would too if you wanted to verify it :). BUT! I copied the HTML from View Source and I'll paste it below. I'm running Windows 95 OSR2 US English with Mozilla 2002050908 and it's an HP OfficeJet 500, out-of-the-box drivers, and I've never seen the printer do this before. Reproducible: Didn't try <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <link rel="stylesheet" type="text/css" href="/style/borders.css"> <link rel="stylesheet" type="text/css" href="/style/text_ns4.css"> <title>MovieTickets.com. Purchase movie tickets online.</title> <meta name="robots" content="all"> <meta name="description" content="MovieTickets.com. The best online source for showtimes and the purchase of movie tickets. "> <meta name="keywords" content="MovieTickets, movie tickets, purchase movie tickets, movie tickets online, movie theaters, movie showtimes, movies, movie times, movie listings, theater listings, movie stars, films, film stars, motion pictures, upcoming movies, coming attractions, coming soon, new movies, movie clips, movie premieres, movie releases, new movie releases, movie reviews, movie previews, trailers, movie trailers, cinemas, films, film premieres, movie ticketing, box office, special events, new releases, family entertainment, family movies, order movie tickets, independent films, action movies, foreign movies, classic movies, comedies, documentaries, dramas, horror movies, musicals, romantic movies, romantic comedies, science fiction movies, scifi movies, thrillers, westerns, mystery movies, suspense movies, animated movies,"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <meta name="DC.creator" content="MovieTickets.com, Inc."> <meta name="DC.subject" content="MovieTickets, movie tickets, purchase movie tickets, movie tickets online, movie theaters, movie showtimes, movies, movie times, movie listings, theater listings, movie stars, films, film stars, motion pictures, upcoming movies, coming attractions, coming soon, new movies, movie clips, movie premieres, movie releases, new movie releases, movie reviews, movie previews, trailers, movie trailers, cinemas, films, film premieres, movie ticketing, box office, special events, new releases, family entertainment, family movies, order movie tickets, independent films, action movies, foreign movies, classic movies, comedies, documentaries, dramas, horror movies, musicals, romantic movies, romantic comedies, science fiction movies, scifi movies, thrillers, westerns, mystery movies, suspense movies, animated movies,"> <meta name="DC.publisher" content="Copyright 2002 MovieTickets.com, Inc."> <meta name="rating" content="SAFE FOR KIDS"> <meta name="distribution" content="GLOBAL"> <meta name="copyright" content="MovieTickets.com, Inc."> <meta name="author" content="MovieTickets.com, Inc."> <meta name="MSSmartTagsPreventParsing" content="true"> <meta http-equiv="imagetoolbar" content="no"> <link rev="made" href="mailto:webmaster@movietickets.com"> <link rel="shortcut icon" href="favicon.ico"> <style TYPE="text/css"> body { } </style> <script language="javascript"> function OpenWindowNav(strUlr) { var calcs = window.open(strUlr); } function Rcertify() { var popupWin = window.open('http://www.bbbonline.org/cks.asp?id=101031214155115457', 'Participant','location=yes,scrollbars=yes,width=545,height=300'); window.name = 'opener'; } function OpenWindow(theURL,winName,features) { window.open(theURL,winName,features); } function SubmitRange() { document.form2.submit(); } function SubmitDate() { document.form2.submit(); } function fnTrim(strIN) { var tmpstr = new String(strIN) tmpstr = tmpstr.replace(/(^\s*)|(\s*$)/g, ""); return tmpstr } //-------------------------------------- SUBMIT_ONCLICK ------------------------------------// // Gets Called from LeftNav ZipSearch "GO" Button // function submit_onclick() { if (document.forms[0].SearchTitle.value == ""){ fnTestforZip(document.forms[0]); document.forms[0].action = "http://www.movietickets.com/house_list.asp"; }else{ document.forms[0].SearchSort.value = 1; fnTestforZip(document.forms[0]); document.forms[0].action = "http://www.movietickets.com/movie_list.asp"; } //alert(document.forms[0].SearchZip.value + " - " + document.forms[0].SearchCity.value + " - " + document.forms[0].SearchState.value) document.forms[0].submit(); } //------------------------------- CHECK FOR CITY STATE AND OR ZIP---------------------------// function fnTestforZip(form){ var strAddress = new String(document.forms[0].SearchZip.value); //var re = new RegExp(/,/g) var arCityState var tmpStateAbbrev = new String("") arCityState = strAddress.split(",") if(/^st/gi.exec(arCityState[0])){ tmpStr = new String(arCityState[0]); stRe = new RegExp(/(^st\.)|(^st)/gi); tmpStr = tmpStr.replace(stRe, "saint"); arCityState[0] = tmpStr; } if(/^ft/gi.exec(arCityState[0])){ tmpStr = new String(arCityState[0]); stRe = new RegExp(/(^ft\.)|(^ft)/gi); tmpStr = tmpStr.replace(stRe, "fort"); arCityState[0] = tmpStr; } if (arCityState.length <= 1){ switch (arCityState[0].length){ case (5) : if(isANum(arCityState[0])){ document.forms[0].SearchZip.value = fnTrim(arCityState[0]); document.forms[0].SearchCity.value = ""; document.forms[0].SearchState.value = ""; return }else{ document.forms[0].SearchZip.value = ""; document.forms[0].SearchCity.value = fnTrim(arCityState[0]); document.forms[0].SearchState.value = ""; return } case (6) : if(isCanZip(arCityState[0])){ var chr = new String("") for (var i=0; i < arCityState[0].length; i++) { if (i != 2){ chr += arCityState[0].charAt(i); }else{ chr += arCityState[0].charAt(i) + " "; } } document.forms[0].SearchZip.value = chr document.forms[0].SearchCity.value = ""; document.forms[0].SearchState.value = ""; return }else{ document.forms[0].SearchZip.value = ""; document.forms[0].SearchCity.value = fnTrim(arCityState[0]); document.forms[0].SearchState.value = ""; return } case (7) : var tmpchr = new String("") for (var i=0; i < arCityState[0].length; i++) { var chr = arCityState[0].charAt(i) if (i != 3 && (chr == " ")) { document.forms[0].SearchZip.value = ""; document.forms[0].SearchCity.value = fnTrim(arCityState[0]); document.forms[0].SearchState.value = ""; return //return "CITY" }else{ if(chr !== " "){ tmpchr += chr } } } if(isCanZip(tmpchr)){ document.forms[0].SearchZip.value = fnTrim(arCityState[0]); document.forms[0].SearchCity.value = ""; document.forms[0].SearchState.value = ""; return //return Canadian ZIP }else{ document.forms[0].SearchZip.value = ""; document.forms[0].SearchCity.value = fnTrim(arCityState[0]); document.forms[0].SearchState.value = ""; return //return "CITY" } default : document.forms[0].SearchZip.value = ""; document.forms[0].SearchCity.value = fnTrim(arCityState[0]); document.forms[0].SearchState.value = ""; return //return "CITY" } }else{ arCityState[1] = fnTrim(arCityState[1]) if(arCityState[1].length > 2){ document.forms[0].SearchZip.value = ""; document.forms[0].SearchCity.value = fnTrim(arCityState[0]); tmpStateAbbrev = fnGetAbbreviation(fnTrim(arCityState[1])); if(tmpStateAbbrev == null) { //alert("the silly thing was set to nUll") document.forms[0].SearchState.value = ""; }else{ document.forms[0].SearchState.value = tmpStateAbbrev; } //return "CITYSTATE" return }else{ document.forms[0].SearchZip.value = ""; document.forms[0].SearchCity.value = fnTrim(arCityState[0]); document.forms[0].SearchState.value = fnTrim(arCityState[1]); return //return "CITYSTATE" } } } function isANum(str) { for (var i=0;i<str.length;i++) { var ch=str.substring(i,i+1) if (ch<"0"||ch>"9") { return false } } return true } function isCanZip(str){ for (var i=0; i < str.length; i++) { var chr = str.charAt(i) if((i==0||i==2||i==4||i==6) && (isANum(chr))){ return false; } if((i==1||i==3||i==5) && (isNaN(chr))){ return false } } return true } function fnGetAbbreviation(strFullName) { var arStates = new Array(63) arStates["alberta"] = "AB"; arStates["alaska"] = "AK"; arStates["alabama"] = "AL"; arStates["arkansas"] = "AR"; arStates["arizona"] = "AZ"; arStates["british columbia"] = "BC"; arStates["california"] = "CA"; arStates["colorado"] = "CO"; arStates["connecticut"] = "CT"; arStates["district of columbia"] = "DC"; arStates["washingtom dc"] = "DC"; arStates["delaware"] = "DE"; arStates["florida"] = "FL"; arStates["georgia"] = "GA"; arStates["hawaii"] = "HI"; arStates["iowa"] = "IA"; arStates["idaho"] = "ID"; arStates["illinois"] = "IL"; arStates["indiana"] = "IN"; arStates["kansas"] = "KS"; arStates["kentucky"] = "KY"; arStates["louisiana"] = "LA"; arStates["massachusetts"] = "MA"; arStates["manatoba"] = "MB"; arStates["maryland"] = "MD"; arStates["maine"] = "ME"; arStates["michigan"] = "MI"; arStates["minnesota"] = "MN"; arStates["missouri"] = "MO"; arStates["mississippi"] = "MS"; arStates["montana"] = "MT"; arStates["new brunswick"] = "NB"; arStates["north carolina"] = "NC"; arStates["north dakota"] = "ND"; arStates["nebraska"] = "NE"; arStates["newfoundland"] = "NF"; arStates["new foundland"] = "NF"; arStates["new hampshire"] = "NH"; arStates["new jersey"] = "NJ"; arStates["new mexico"] = "NM"; arStates["nova scotia"] = "NS"; arStates["nunavut"] = "NT"; arStates["northwest territories"] = "NT"; arStates["nevada"] = "NV"; arStates["new york"] = "NY"; arStates["ohio"] = "OH"; arStates["oklahoma"] = "OK"; arStates["ontario"] = "ON"; arStates["oregon"] = "OR"; arStates["pennsylvania"] = "PA"; arStates["prince edward island"] = "PE"; arStates["prince edward"] = "PE"; arStates["quebec"] = "QC"; arStates["rhode island"] = "RI"; arStates["south carolina"] = "SC"; arStates["couth dakota"] = "SD"; arStates["saskatchewan"] = "SK"; arStates["tennessee"] = "TN"; arStates["texas"] = "TX"; arStates["utah"] = "UT"; arStates["virginia"] = "VA"; arStates["vermont"] = "VT"; arStates["washington"] = "WA"; arStates["wisconsin"] = "WI"; arStates["west virginia"] = "WV"; arStates["wyoming "] = "WY"; arStates["yukon"] = "YT"; arStates["yukon territory"] = "YT"; arStates["yukon territories"] = "YT"; return arStates[strFullName.toLowerCase()] } //------------------------------------------------------------------------------------------// </script> </head> <body bgcolor="#660066" text="#000000" leftmargin="0" topmargin="5" marginwidth="0" marginheight="5" link="#660066" vlink="#660066" alink="#660066"> <center> <map name="Map"> <area shape="rect" coords="0,0,50,25" href="http://www.movietickets.com/default.asp" alt="Home"> <area shape="rect" coords="57,0,170,26" href="https://www.movietickets.com/myaccount.asp" alt="My Account"> <area shape="rect" coords="176,3,223,25" href="http://movietickets.hollywood.com/news/" target="_blank" alt="News"> <area shape="rect" coords="229,1,288,24" href="http://www.movietickets.com/advanced_search.asp" alt="Advanced Search"> <!-- <area shape="rect" coords="292,1,333,25" href="http://store.hollywood.com" target="_blank" alt="Shopping"> --> <area shape="rect" coords="295,3,335,25" href="http://www.movietickets.com/help.asp" alt="Help"> </map> <table width="750" align="center" border="0" cellspacing="0" cellpadding="0" height="16"> <tr> <td width="121" height="16"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/124/header_top_piece_left.gif" width="121" height="16" alt=""></td> <td width="508" height="16"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/124/header_top_piece_1w.gif" width="508" height="16" alt=""></td> <td width="121" height="16"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/124/header_top_piece_right.gif" width="121" height="16" alt=""></td> </tr> </table> <table align="center" width="750" height="103" border="0" cellspacing="0" cellpadding="0" bgcolor="#33008f" style="BACKGROUND-POSITION: left top; BACKGROUND-IMAGE: url(https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/124/back_top_vert_113h.gif); BACKGROUND-REPEAT: repeat-x"> <tr> <td class="borders-left" width="4" height="5"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="4" height="5" alt=""></td> <td width="140" height="5"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="10" height="5" alt=""></td> <td width="4" height="5"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="2" height="5" alt=""></td> <td class="borders-right" width="600" height="5"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="10" height="5" alt=""></td> </tr> <tr> <td class="borders-left" width="4" height="80"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="4" height="10" alt=""></td> <td width="140" height="80" valign="top"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/logo_mt_140x75.gif" width="140" height="75" alt="MovieTickets.com, To Buy A Ticket, Just Click It!"></td> <td width="4" height="80"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="4" height="10"></td> <td width="600" height="80" class="borders-right"> <table width="600" border="0" cellspacing="0" cellpadding="0" height="80"> <tr> <td width="600" height="66"> <table width="600" border="0" cellspacing="0" cellpadding="0" height="60"> <tr> <td width="468" height="60"><a href="http://ads.hollywood.com/ads/redirector.asp?section=xaction.asp&site=movietickets&campaign=0&target=http://www.sunfinder.com/cgi-bin/partner/clickthru.cgi?id=movietickets&tmsp=20020513185939" target="_top"><img src="https://ads.hollywood.com/ads/images/movietickets_finder.gif" border="0"></a><noscript><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/ad-movetickets468x60.jpg" width="468" height="60" border0 alt=""></noscript></td> <td width="5" height="60"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="4" height="5"></td> <td width="127" height="60"><a href="http://www.moviewatcher.com"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/cb/logo/amc.gif" width="120" height="60" border="0" alt="MovieTickets.com Partner - AMC"></a></td> </tr> </table> </td> </tr> <tr> <td height="14"> <table width="600" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="246"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="10" height="14"></td> <td width="354"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/124/text_american_english.gif" width="243" height="14" alt=""></td> </tr> </table> </td> </tr> </table> </td> </tr> <tr> <td align="center" width="750" height="28" colspan="4"> <table width="748" height="28" cellspacing="0" cellpadding="0" border="0" align="center" bgcolor="#666666"> <tr> <td width="95"height="28" class="borders-left" rowspan="2"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/124/navbar_tri_left.gif" width="95" height="28"></td> <td width="388" height="28"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/navbar_left_join.gif" width="388" height="28" usemap="#Map" border="0" alt=""></td> <td width="37" height="28"><a href="/xaction.asp?language=2"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/navbar_canadian.gif" width="37" height="28" border="0" alt="Click Here For Our Canadian Theaters."></a></td> <td width="37" height="28"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/navbar_blank.gif" width="37" height="28" alt=""></td> <td width="96" height="28"><a href="http://www.movietickets.com/customer_service.asp"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/navbar_cs.gif" width="96" height="28" border="0" alt="Customer Service 1-888-440-8457"></a></td> <td width="95" height="28" class="borders-right" rowspan="2"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/124/navbar_tri_right.gif" width="95" height="28"></td> </tr> </table> </td> </tr> </table> </center> <script language="javascript"> img=new Array(); img[0]= new Image();img[0].src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/happy.jpg"; img[1]= new Image();img[1].src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/unhappy.jpg"; img[2]= new Image();img[2].src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/clock.gif"; img[3]= new Image();img[3].src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/text_thankyou.gif"; img[4]= new Image();img[4].src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/text_sorry.gif"; img[5]= new Image();img[5].src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/text_ticket_purchase.gif"; function success() { document.trans_clock.src = img[0].src; document.trans_text.src = img[3].src; document.trans_text.alt = "Thank you, your purchase has been confirmed. Your Tracking number is 1741556935-4089128"; } function failed() { document.trans_clock.src = img[1].src; document.trans_text.src = img[4].src; document.trans_text.alt = "Sorry, your order did not go through for the following reasons: 1741556935-4089128"; } </script> <!--//<div class="XactBody">--> <center> <table width="748" border="0" cellspacing="0" cellpadding="0" class="borders-left-right"> <tr> <td valign="top" width="748" bgcolor="#996699"> <table align="center" width="748" border="0" cellspacing="0" cellpadding="0" height="10"> <tr> <td width="14"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="1" height="1" alt=""></td> <!--<td colspan="7" height="33"></td>--> <td colspan="7">&nbsp;</td> <td width="390" align="right"> <!--v logo--> </td> <td width="14"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="14" height="10" alt=""></td> </tr> </table> </td> </tr> </table> <table width="748" border="0" cellspacing="0" cellpadding="0" class="borders-left-right"> <tr> <td bgcolor="#996699"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="13" height="10" alt=""></td> <td width="15" height="100%" bgcolor="#003399" class="borders-left-top"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="15" height="10" alt=""></td> <td> <table width="705" border="0" cellspacing="0" cellpadding="0"> <tr> <td> <table width="705" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#003399" class="borders-top-right"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="1" height="6" alt=""></td> </tr> <tr> <td bgcolor="#ffffff" class="borders-left-top-right"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="1" height="5" alt=""></td> </tr> <tr> <td bgcolor="#ffffff" class="borders-left-right"> <table width="703" border="0" bgcolor="#ffffff" cellspacing="0" cellpadding="0"> <tr> <td> <img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="7" height="5" alt=""> </td> <td valign="top"> <table width="560" border="0" cellspacing="0" cellpadding="0"> <tr> <td> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td> <span class="text-arial-16bold">PURCHASE MOVIE TICKETS </span> </td> </tr> <tr> <td> <span class="text-arial-12">Showtimes </span> <span class="text-arial-12"> &gt; Tickets &gt; Payment &gt; Purchase &gt; </span> <span class="text-arial-12boldpurple">Order Status </span> </td> </tr> </table> </td> </tr> </table> <table border="0" cellspacing="0" cellpadding="0" width="560"> <tr> <td><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="1" height="1" alt=""></td> </tr> <tr> <td> <table border="0" cellspacing="0" cellpadding="0" width="560"> <tr> <td> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td><span class="text-arial-12">Your Tracking Number is <b>1741556935-4089128</b>.</span> <span class="text-arial-12"> This number is for MovieTickets.com tracking purposes only. It is not a confirmation number.</span> </td> </tr> <tr> <td><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="1" height="5" alt=""></td> </tr> <tr> <td><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/text_ticket_purchase.gif" name="trans_text" id="trans_text" width="422" height="50" alt="Please wait while your purchase is being processed. Do not click any buttons or use the keyboard during this process. This may take up to 5 minutes."></td> </tr> </table> </td> <td align="center" width="110"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/clock.gif" name="trans_clock" id="trans_clock"></td> </tr> </table> </td> </tr> </table> </td> <td width="130" align="center" valign="top"> <center><a href="http://ads.hollywood.com/ads/redirector.asp?section=xaction.asp&site=movietickets&campaign=0&target=https://www.movietickets.com/myaccount.asp&tmsp=20020513185939" target="_top"><img src="https://ads.hollywood.com/ads/images/mt_register_90.gif" border="0"></a></center><br> <br> <img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="120" height="5" border="0" alt=""><br> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> </td> <td bgcolor="#996699"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="14" height="1" alt=""></td> </tr> </table> <table width="748" border="0" align="center" cellspacing="0" cellpadding="0" bgcolor="#ffffff" class="borders-left-right"> <tr> <td bgcolor="#996699"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="13" height="10" alt=""></td> <!-- <td width="15" height="100%" valign="top" bgcolor="#330098" class="borders-left"><img src="< %=strCommonImagePath% >/back_top_vert_105h.gif" width="15" height="100%" alt=""></td> --> <td width="15" bgcolor="#003399" class="borders-left-bottom-right"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="15" height="10" alt=""></td> <td width="10" class="borders-bottom"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="8" height="10" alt=""></td> <td width="566" class="borders-bottom" valign="top"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="566" height="1" alt=""><br> <!--<table width="566" align="left" cellspacing="0" cellpadding="0" class="borders-left">--> <table width="566" align="center" bgcolor="ffffff" cellspacing="0" border="0" cellpadding="0"><script language="javascript">success();</script> <tr> <td> <table cellspacing="0" cellpadding="0" border="0"> <tr> <td width="10"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="10" height="10" alt=""></td> <td> <table width="390" border="0" cellspacing="0" cellpadding="5" class="border-gray-153-bottom"> <tr> <td colspan="2" width="500" height="16"> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td> &nbsp; </td> </tr> <tr> <td class="text-arial-12bold">TICKET PICKUP INSTRUCTIONS </td> </tr> <tr> <td class="text-arial-12">Tickets may be retrieved at the Automated Box Office (ABO), the theatre box-office or Guest Services at the location where your movie is playing. You will need to bring the credit card you used to purchase the tickets as your form of identification and retrieval. Thank You.</td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="border-gray-153-bottom" width="500" height="16"><span class="text-arial-14bold">Your Purchase </span></td> </tr> <tr> <td width="250" valign="top"> <table width="250" border="0" cellspacing="0" cellpadding="0"> <tr valign="top"> <td width="100" class="text-arial-12bold">Movie </td> <td width="250" class="text-arial-10">Star Wars: Episode II - Attack of the Clones<br> Rated - PG<br> 2 hrs. 12 min.<br> <br> </td> </tr> <tr valign="top"> <td height="10" width="100">&nbsp;</td> <td height="10" width="250">&nbsp;</td> </tr> <tr valign="top"> <td width="100" class="text-arial-12bold">Theater </td> <td width="250" class="text-arial-10bold">AMC Palm Promenade 24 <br> 770 Dennery Road <br> San Diego, CA 92154 <br> (858)558-2AMC </td> </tr> <tr valign="top"> <td height="10" width="100">&nbsp;</td> <td height="10" width="250">&nbsp;</td> </tr> <tr valign="top"> <td width="100" class="text-arial-12bold">Email: </td> <td width="250" class="text-arial-10"></td> </tr> </table> </td> <td width="250" valign="top"> <table width="250" border="0" cellspacing="0" cellpadding="0"> <tr valign="top"> <td width="100" class="text-arial-12bold">Date: </td> <td width="150" class="text-arial-10">Wednesday, May 15</td> </tr> <tr valign="top"> <td width="100" height="10">&nbsp;</td> <td width="150" height="10">&nbsp;</td> </tr> <tr valign="top"> <td width="100" class="text-arial-12bold">Time: </td> <td width="150" class="text-arial-10">12:01am</td> </tr> <tr valign="top"> <td width="100" height="10">&nbsp;</td> <td width="150" height="10">&nbsp;</td> </tr> <tr valign="top"> <td width="100" class="text-arial-12bold">Credit Card: </td> <td width="150" class="text-arial-10">xxxxxxxxxxxx1704</td> </tr> <tr valign="top"> <td width="100" height="10">&nbsp;</td> <td width="150" height="10">&nbsp;</td> </tr> <tr valign="top"> <td width="100" class="text-arial-12bold">Ticket Quantity: </td> <td width="150" class="text-arial-10">4 ADULT<br> </td> </tr> <tr> <td valign="top" width="100" height="10">&nbsp;</td> <td valign="top" width="150" height="10">&nbsp;</td> </tr> <tr> <td valign="top" width="100" class="text-arial-12bold">Total Purchase: </td> <td valign="top" width="150" class="text-arial-10">$34.00 USD</td> </tr> </table> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr> <td> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="10" height="5" alt=""></td> <td><br> <table border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="1" height="5" alt=""></td></tr> <tr><td class="text-arial-12bold">SALES DISCLAIMER </td></tr> <tr><td class="text-arial-12">When you click on PURCHASE, your credit card will be charged at that time. Please take the same credit card to the theatre you selected to retrieve your tickets. You can retrieve tickets at the Box Office, Guest Services or ABO (Automated Box Office).<br> <br>You will need to present the same credit card at the theatre to process any refunds, cancellations or other problems with your credit card. Service charges are not refunded for cancellations.<br><br> <span class="text-arial-12">Email or call customer service to resolve any issues at <a href="mailto:customerservice@movietickets.com">customerservice@movietickets.com</a><br> or 1-888-440-8457.&nbsp;&nbsp;Refer to your order by the tracking number above.</td></tr> </table> </td> </tr> </table> </td> </tr><tr><td><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="1" height="5" alt=""></td></tr> <tr> <td><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="10" height="5" alt=""></td> </tr> <tr><td width="566"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="566" height="5" alt=""></td></tr> </table> <!--order results--> </td> <td width="130" height="5" bgcolor="#ffffff" valign="top" class="borders-bottom-right"> <img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="129" height="5" alt=""></td> <td bgcolor="#996699"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="14" height="5" alt=""></td> </tr> <tr> <td width="748" height="20" colspan="6" bgcolor="#996699"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="744" height="20" alt=""></td> </tr> </table> <!--Footer Begins--> <table width="750" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="#330090" style="BACKGROUND-POSITION: left top; BACKGROUND-IMAGE: url(https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/124/back_85h.gif); BACKGROUND-REPEAT: repeat-x"> <tr> <td width="10" height="5" class="borders-left-top"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="10" height="5" alt=""></td> <td width="90" align="center" height="5" class="borders-top"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="90" height="5" alt=""></td> <td width="49" align="center" height="5" class="borders-top"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="49" height="5" alt=""></td> <td width="290" align="center" height="5" class="borders-top"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="410" height="5" alt=""></td> <td width="49" align="center" height="5" class="borders-top"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="49" height="5" alt=""></td> <td width="90" height="5" class="borders-top"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="90" height="5" alt=""></td> <td width="10" height="5" class="borders-top-right"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="10" height="5" alt=""></td> </tr> <tr> <td width="10" height="74" class="borders-left"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="10" height="74" alt=""></td> <td width="90" height="74" align="center"><a href="javascript:Rcertify()"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/reliabilityseal41.gif" width="90" height="31" border="0" alt="BBB Online Reliability Seal"></a></td> <td width="49" align="center" height="74"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="49" height="74" alt=""></td> <td width="410" class="text-footer" align="center" valign="top" height="54"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="410" height="1" border="0" alt=""><br><a href="http://www.movietickets.com/default.asp">Home</a> | <a href="http://www.movietickets.com/customer_service.asp">Customer Service</a> | <a href="http://www.movietickets.com/aboutus.asp">About Us</a> | <a href="http://www.movietickets.com/contact.asp">Contact Us</a> | <a href="http://www.movietickets.com/linktous.asp">Link to Us</a> <br><a href="http://www.movietickets.com/pressreleases.asp">Press Releases</a> | <a href="http://www.movietickets.com/privacypolicy.asp">Privacy Policy</a> | <a href="https://www.movietickets.com/sign_in.asp">Registration</a> | <a href="http://www.movietickets.com/help.asp">Help</a> <table cellspacing="0" cellpadding="0" border="0" width="88" height="31" align="center"> <tr> <td colspan="3" width="88" height="10"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="88" height="10" alt=""></td> </tr> <tr> <td></td> </tr> </table> </td> <td align="center" width="49" height="74"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="49" height="74" alt=""></td> <td width="90" height="74" align="center"><a href="https://digitalid.verisign.com/as2/4189a01765105ac5c9e5769e22dd1a95" target="new"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/logo_verisign_text2.gif" width="90" height="41" border="0" alt="VeriSign logo"></a></td> <td width="10" height="74" class="borders-right"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/trans1x5.gif" width="10" height="74" alt=""></td> </tr> </table> <table cellspacing="0" cellpadding="0" border="0" width="750" height="10" align="center"> <tr> <td width="100" height="10" align="left"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/124/footer_corner-tleft2.gif" width="100" height="10" alt=""></td> <td width="550" height="10" align="center"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/124/block_550x10.gif" width="550" height="10" alt=""></td> <td width="100" height="10" align="right"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/124/footer_corner_tright2.gif" width="100" height="10" alt=""></td> </tr> </table> <table cellspacing="0" cellpadding="0" border="0" width="550" height="15" align="center"> <tr> <td width="550" height="15" align="center"><a href="http://www.movietickets.com/legal.asp"><img src="https://a248.e.akamai.net/7/248/1174/2002510161951/www.movietickets.com/images_real/124/footer-copyright2.gif" width="550" height="15" border="0" alt="Copyright 2002 MovieTickets.com, Inc."></a></td> </tr> </table> <!--SS1--> <!--SS1--> <!--Footer Ends--> <!--// **** www7 **** ---> </center> <!--//</div>--> </body> </html>
Doctor J, It's probably best if you create an attachment for source HTML instead of pasting inline, especially if it's long. :) Anyhow, I have experienced this several times as well. I am using MS Windows '98 and have an HP DeskJet 890Cse (and Moz. build 2002061104). I have only seen this on the Dell customize order section. I'll attach a .JPG so you can see what it looks like. When I try to print the page again after it prints in reverse Mozilla crashes: MOZILLA caused an invalid page fault in module <unknown> at 0000:ff1a7578. Registers: EAX=600c5000 CS=018f EIP=ff1a7578 EFLGS=00010202 EBX=00000005 SS=0197 ESP=0064f4c4 EBP=03a1a610 ECX=00000006 DS=0197 ESI=03a1a6d8 FS=0edf EDX=00000005 ES=0197 EDI=02bf6538 GS=0000 Bytes at CS:EIP: Stack dump: 6065f6a2 02bf6538 03a1a610 0064f4f4 0064f504 0064f520 00000000 605abf06 03a1a610 02c34778 02c34750 00000000 00000000 00000000 00000000 00000000 Talkback didn't capture it for some reason. Saving the page and printing it from there worked fine. Going back to the page caused the problem again though something else I printed from these pages printed fine. The priority should probably be bumped to at least normal since it causes a crash. (Marking new.)
Status: UNCONFIRMED → NEW
Ever confirmed: true
I tried printing the page I was having trouble with and Talkback captured it; ID# TB8263930K.
I haven't isolated the cause but here's another site. It either crashes or prints in reverse (unless it prints fine, of course!). http://www.geocaching.com/seek/cache_details.asp?ID=6455&decrypt=y MOZILLA caused an invalid page fault in module <unknown> at 0000:91e80875. Registers: EAX=600b507b CS=018f EIP=91e80875 EFLGS=00010206 EBX=023903b8 SS=0197 ESP=0064ecf0 EBP=0064ed24 ECX=00000006 DS=0197 ESI=0234cb18 FS=119f EDX=00000005 ES=0197 EDI=80000000 GS=0000 Bytes at CS:EIP: Stack dump: 6065feca 0234cb18 023902f0 01ad04a0 00000000 007a5690 00000001 ffffffff 606b20c0 01ad04a0 007a5690 00000000 00000005 0064ede0 605be5f7 023902f0
Summary: Print selection prints page backwards (mirror image) → Print selection prints page backwards (mirror image/reversed)
Priority: -- → P3
Target Milestone: --- → Future
I haven't seen this bug in a long time, though I'm no longer using Windows '98. Perhaps it's fixed?
WFM please reopen with new information if issue is still a problem.
Status: NEW → RESOLVED
Closed: 19 years ago
Resolution: --- → FIXED
No specific bug / patch referenced as the fix. -> WORKSFORME
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Status: REOPENED → RESOLVED
Closed: 19 years ago19 years ago
Resolution: --- → WORKSFORME
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Creator:
Created:
Updated:
Size: