A strange bug in rendering engine

I am probably doing something wrong, but this page displays correctly in Opera 12 (Opera 11 is also fine, but it makes the last 2 checkboxes unclickable) and Chrome 21+, and it is for some reason messed up in the latest version of Firefox. I'm very dissapointed.
First I thought it is because of the column-count rule. But then I compared the results with another page without multicolumn. It's also messed up. Why?..
I'm not going to include the markup of the second page for shortness, but it is much the same - just remove some checkboxes in the left cell and remove the column-count rule optionally.
What was meant: two-cell table with outlined blocks inside of each cell. Checkboxes are contained in those outlined blocks. What's happening: the cells sit on each other directly and overlap each other.

I don't think Firefox will change how position:absolute works in table cells, unless there is a standard (e.g., something in CSS3) saying it should work a different way. That's usually what you need to see a change go through.
In Firefox, I think the height of a td element is always auto, so since % height is a function of the parent element height, it doesn't work in a td.
As you can tell, the developers long ago decided not to support the use of tables for layout purposes, and given the opportunity to comment, they probably would suggest using a block container such as a div element instead of a table.
If you want to pursue alternate designs, a better forum would be the unofficial [http://forums.mozillazine.org/viewforum.php?f=25 mozillaZine Web Development board].

Similar Messages

  • Strange bug with CC panel and OS X Spaces

    I seem to have a strange bug where the CC panel opens each time I switch spaces in OS X (click on the GIF animation below).  Anyone else have this problem?

    Hi Lee ,
    This has been already notified to the engineering team.
    http://forums.adobe.com/message/5421355#5421355
    Thanks,
    Manish

  • Bug on "rendered"

    Hi all,
    I had the following case which shows the bug on "rendered"
    TEST 1:
    <af:inputText value="#{'Y' eq bindings.v1Return.inputValue}" id="it5">
    <af:inputText value="#{'Y' eq bindings.v2Return.inputValue}" id="it6">
    The screen output :
    true
    false
    TEST 2:
    <af:inputText value="#{'Y' eq bindings.v1Return.inputValue}" id="it5" rendered="#{'Y' eq bindings.v1Return.inputValue}" >
    <af:inputText value="#{'Y' eq bindings.v2Return.inputValue}" id="it6" rendered="#{'Y' eq bindings.v2Return.inputValue}" >
    The screen output :
    true
    TEST 3:
    <af:panelGroupLayout id="pgl7" rendered="#{'Y' eq bindings.v2Return.inputValue}">
    .....// some af:outputText here
    </af:panelGroupLayout >
    The screen shows correctly except that this panelGroupLayout(with all children) is hidden
    TEST 4 (Bug):
    <af:panelGroupLayout id="pgl7" rendered="#{'Y' eq bindings.v1Return.inputValue}">
    .....// some af:outputText here
    </af:panelGroupLayout >
    Loading error... The page does not show up.
    TEST 5:
    <af:panelGroupLayout id="pgl7" rendered="#{'Y' eq 'Y'}">
    .....// some af:outputText here
    </af:panelGroupLayout >
    Everything shows correctly in the screen
    =============================
    I need to use the EL expression to control this panelGroupLayout rendered or not using v1Return and v2Return. They are the return values by invokeAction.
    However, it seems that there is a bug here...

    <UIXInclude><tearDownVisitingContext> Tear down of include component context failed due to an unhandled exception.
    java.util.NoSuchElementException
         at java.util.ArrayDeque.removeFirst(ArrayDeque.java:251)
         at java.util.ArrayDeque.pop(ArrayDeque.java:480)
    Action: Ensure that command line tool "adrci" can be executed from the command line.
         at oracle.dfw.impl.incident.ADRHelper.invoke(ADRHelper.java:1052)
         at oracle.dfw.impl.incident.ADRHelper.createIncident(ADRHelper.java:786)
         at oracle.dfw.impl.incident.DiagnosticsDataExtractorImpl.createADRIncident(DiagnosticsDataExtractorImpl.java:688)
         ... 19 more
    I have soloved this wierd problem, it is not because of the component but position... see below...
    This is my page:
    <af:root>
    <af:panelGroupLayout1>
    <af:panelGroupLayout2>
    </af:panelGroupLayout2>
    <af:panelGroupLayout3>
    </af:panelGroupLayout3>
    <af:panelGroupLayout4>
    <af:inputText value="123" rendered="#{'Y' eq bindings.v1Return.inputValue}" id="it5">
    </af:panelGroupLayout4>
    </af:panelGroupLayout1>
    <af:root>
    The above page works fine.
    However if I remove panelGroupLayout4:
    <af:root>
    <af:panelGroupLayout1>
    <af:panelGroupLayout2>
    </af:panelGroupLayout2>
    <af:panelGroupLayout3>
    </af:panelGroupLayout3>
    <af:inputText value="123" rendered="#{'Y' eq bindings.v1Return.inputValue}" id="it5">
    </af:panelGroupLayout1>
    <af:root>
    Expression Error when loading the page
    So, on my first post, I add a <af:panelGroupLayout> to TEST 4, then It Is Working
    <af:panelGroupLayout>
    <af:panelGroupLayout id="pgl7" rendered="#{'Y' eq bindings.v1Return.inputValue}">
    .....// some af:outputText here
    </af:panelGroupLayout >
    </af:panelGroupLayout >
    So wierd..

  • Strange bug on skype (is this a sign that the pers...

    Hello
    I have the latest 5.9 version on my Iphone 5s
    and I couldn't help but notice a strange bug.
    When I turn on Skype,
    at first everyone is offline (just loading I guess),
    then I see some green lights appear
    at the bottom of the profile pictures of those that are online
    (normal up to this point).
    The strange bug is that in the case of one of my contacts
    whenever i turn on skype the green light appears for 3 seconds and then disappears.
    I find this strange since the green circles of other contacts that are online remain
    whereas this contact's green circle always disappears after couple of seconds,
    which leaves me wondering if this contact has blocked me.
    After I noticed this strange bug I turned skype on and off numerous times
    to see if the same thing happens everytime and indeed it does.
    I could not ask the contact directly since we are not in good terms
    and I cannot imagine this contact going offline everytime I go online.
    So why is this happening?
    Is it a sign that the contact has blocked me?

    the same thing happens to me with one of my contacts... Tried asking Skype about it but they had no useful response for me. Did you ever figure it out?

  • Strange Bug in oracle.jbo.domain.Number

    Hi
    There is a strange Bug in oracle.jbo.domain.Number. Look at the following code:
    System.out.println(new Number("12E4"));In JDeveloper 9.0.5.3 this code prints
    12000which is correct. In JDeveloper 10.1.3 this code throws an exception:
    java.lang.NumberFormatException: For input string: "E4"
         at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
         at java.lang.Integer.parseInt(Integer.java:447)
         at java.lang.Integer.parseInt(Integer.java:497)
         at oracle.sql.NUMBER.toBytes(NUMBER.java:1861)
         at oracle.sql.NUMBER.stringToBytes(NUMBER.java:3398)
         at oracle.sql.NUMBER.<init>(NUMBER.java:277)
         at oracle.jbo.domain.Number.<init>(Number.java:289)
         at project1.Main.main(Main.java:10)I think this is a serious bug since some very basic behaviour is not working as expected anymore.

    It's a bug.
    The parseInt method is called and from its javadoc it's clear that it throws a NumberFormatException:
    Parses the string argument as a signed decimal integer. The characters in the string must all be decimal digits, except that the first character may be an ASCII minus sign '-' ('\u002D') to indicate a negative value. The resulting integer value is returned, exactly as if the argument and the radix 10 were given as arguments to the parseInt(java.lang.String, int) method.
    Maybe the earlier implementation of oracle.jbo.domain.Number didn't use the parseInt method.
    Ronald

  • PDF Generator rendering engine version

    I'm using ES3 version 10.0.2, GM. Using the service "HTML To PDF" I saw that the rendering engine is:
    mozilla/5.0 (windows nt 6.1; win64; x64) applewebkit/534.34 (khtml, like gecko) qt/4.8.5 safari/534.34
    My question: Is there any way to upgrade the service to use newer version of this engine, and if not is ES4 services use newer engine?
    Thanks

    ES4 trial download is available @ http://www.adobe.com/devnet/livecycle/downloads.html
    --Santosh

  • Very strange bug: random keyboard disposition

    Hi,
    I just experimented a very strange bug. I have Arch installed with the XFCE desktop and Firefox3b05 from unstable. I was reading my favourite austrian newspaper online: http://derstandard.at. There's the possibility to post messages under the articles, so I clicked on "Post", and suddenly, within the posting window... my keyboard disposition went crazy. Instead of "a", I had a greek omega, instead of "s", I had a euro symbol, and so on. And more: all the other apps were suddenly affected too. I opened mousepad, same story.
    I restarted X, went to the same site... and had the same experience. But after the third time, things seem to have returned to normality.
    Anybody ever experienced something similar? What could this be related to? X going crazy?

    Well, viewing the site is not the problem. You'd have to get an account and actually try posting a message on their message board. That's where the havoc begins.
    JavaScript from hell, maybe...

  • Strange bug, items in list boxes disappearing

    First of all this is my first post here ever. If its a wrong forum, sorry.
    So ever since I installed Windows 8.1 here (fresh install), I have this strange bug were items in list boxes start disappearing when you open a window with them.
    It didn't bother me much but now its horrible when I wanted to switch my playback device... Or if you want to change IP settings on my network adapter.
    The thing is it all happens in a very short period of time so it took me a while to get screens of it and here they are:
    s9.postimg.org/dvqvulc5b/bug.gif
    s9.postimg.org/a0nhs0szj/bug2.gif
    I still can't upload images on this forum!
    That is real time of how it appears on my screen when I open those windows. You can see on the first image that the window is still appearing.
    I have searched for this problem but couldn't find anything.
    Lenovo Z510 Notebook

    try to use default Windows 8.1 theme
    try to check with different account
    try to check in safe mode
    try to find if there is any graphic driver update or any driver update, compare your version
    http://support.lenovo.com/en_HK/downloads/detail.page?DocID=DS037055
    try to update your windows
    monitor event viewer if there is any abnormal behavior
    try to check using PSR
    http://windows.microsoft.com/en-hk/windows7/how-do-i-use-problem-steps-recorder
    update your windows if there is any windows update

  • Bug in rendering  HTML content Apex 2.2 (in Apex 2.0 was OK)

    We have many PLSQL processes which are called through boolean function which return some message as well as the result.
    <br>
    function some_func (pid IN NUMBER,err_msg OUT NOCOPY VARCHAR2) RETURN BOOLEAN;<br>
    and at the end function looks like:
    <br>
      :err_msg := 'Pitanje <*b>'||TO_CHAR(p_id)||'<*/b> je OK!';
      RETURN TRUE;<br>
    Later, in "On load before header", we call this function and assign "err_msg" value to hidden item "P2_MESSAGE", placed on the same page. Assigment is done in an way like:
    <br>
      some_bool:=some_func (:P2_ID,:P2_MESSAGE);<br>
    In one HTML reagion, we put in "Source", code like:
    <br>
    <*class="t16dataalt">&P2_MESSAGE.</class><br>
    and until now, bold tags are applied as well as class-we get only text!
    <br>
    But now, in Apex 2.2, (original theme 16 used) in result we get all content as it is not recognized as HTML code.
    <br>
    In browser the result(in a case of OK result) is:
    <br>
    Pitanje <*b>1<*/b> je OK!<br>
    and the generated source is:
    <br>
    <*class="*t16dataalt">Pitanje &*lt;*b&*gt;1&*lt;/b&*gt; je OK!</*class="*t16dataalt"><br>
    Is that a bug or what?
    <br>
    Once more, before the same code was working nice, theme 2 used...
    <br>
    THX!
    <br>
    P.S
    <br>
    "*" is added to be read clearly!
    <br>
    P.S II
    <br>
    We have imported app that was exported on Apex 2.0 and the same problem occure!
    <br>
    So we think this is a bug in rendering HTML region!
    <br>
    Is there any hint to overcome that until patch come ?
    Message was edited by:
    Funky

    The issue is easy to reproduce. Create HTML region:
    User Interface Template-Reports Region
    Display point-Page template body
    Assign one hiden item in on load process with value:
    P2_MESSAGE := "< b>OK</ b<>";
    Put P2_MESSAGE in HTML Source with content like this:
    < class="t16dataalt">&P2_MESSAGE.</ class>
    and you have it!

  • Webdynpro ABAP and Light Speed Rendering Engine Performance reports

    Hello,
    We will be applying the NW EhP1 and ERP EhP4 in November this year.
    I am very much excited about the new Lightspeed rendering technology that SAP has delivered with Webdynpro ABAP.
    Has anybody installed this already and can you comment about the performance of Webdynpro ABAP AFTER activating this new rendeing engine?
    regards,
    Atul Kulkarni

    We have implemented the EHP1 for NW 7.0 and ERP EHP4 back in May 2009.  The performance of web dynpro  applications is much better with the new rendering engine. The new name is living up to it's character of speed of light.
    The usability of the application has increased with the new trade show plus theme. For example pink background for fields with errors. Access Keys and Hot Keys are very useful, specifically if you are migrating legacy applications from systems/languages which rely heavily on access keys.

  • Error "The WSDL document could not be understood by the rendering engine"

    I am trying to invoke a web service in an APEX page. However for various web services i get the message "The WSDL document could not be understood by the rendering engine".
    For example the web service "http://mrs.cmbi.ru.nl/mrsws/blast/wsdl". This URL returns a wsdl but APEX complains about the URL.
    Does anybody know a public web service to be used for tesing within APEX, based upon a WSDL file?

    I am trying to invoke a web service in an APEX page. However for various web services i get the message "The WSDL document could not be understood by the rendering engine".
    For example the web service "http://mrs.cmbi.ru.nl/mrsws/blast/wsdl". This URL returns a wsdl but APEX complains about the URL.
    Does anybody know a public web service to be used for tesing within APEX, based upon a WSDL file?

  • Strange bug in new phone

    Hi,
    I'm having a strange bug in my new iphone. I recently upgraded to an iphone from an older model of phone and had my contacts transferred to the new phone by the sales rep at the store. I dont know how the process worked exactly, but im guessing it has something to do with the sims cards or something like that. anyway, ive ad my phone for a day and it has been working fine up until an hour ago. suddenly, i am able to make and receive text messages from my new phone, but i can only make and receive calls from my old phone. i was told that once my service was activated with my new phone, that the old one would just have no more service. that was the case until about an hour ago. now i can text from my new phone, but can only make phone calls from the old one. anyone ever hear of this happening? please help. thanks ahead of time.
    sincerely,
    joe

    Hi stinky7777,
    I see that you've been provided with a couple options to resolve the issues with your phones (thanks victorbraga98 and kaebfly), this is definitely an activation issue. I trust that you have contacted our technical support at 1-800-922-0204 and your concerns have been resolved by now. If you still need assistance with the proper activation of your new iPhone please send me a direct message with your name and number and I will follow up with you to resolve the activation issue.
    For immediate assistance please call 800-922-0204. We're available 6am to 11pm CST., every day of the year. Please call us from another phone and have your iPhone fully charged and available for troubleshooting.
    You can also contact us on Twitter @VZWSupport Monday to Friday 7am-10pm CST., and Saturday 7am to 4pm CST.
    AntonioC_VZWSupport
    Follow us on Twitter at www.twitter.com/vzwsupport

  • Transitioning sites to the new Business Catalyst rendering engine (BC.NEXT)

    The beta test I did resulted in a broken site I tested it on
    This is unacceptable implementation practice, unfortunately typical Adobe bulling partners
    What is also disappointing is the cowardly management practice of making this email announcement on the Saturday of a long weekend prior to the implementation.
    Totally lacks respect for Partners.
    Customers paid in good faith for sites, it is very inappropriate that Adode BC screws sites on a platform that was sold to us as partners as able to move forward without compatibly issues
    Be ashamed BC management ,very ashamed
    so what happens now to broken sites!

    Email received 0624am AU EST Sat 42 01 2015 
    Live chat was unavailable on the Saturday morning, tried several times and it did not display
    Will just wait til the dust settles and see what happens with other clients. No time to bother with this sort of supplier management planning and notifications attitude
    Starting Wednesday, January 28th, we will begin gradually transitioning the Business Catalyst sites to our new rendering engine.
    Already used in production by thousands of sites, this new engine is faster, more reliable and gives you access to additional functionality like named parameters for modules, Liquid language support and increased SEO score by enabling browser caching for static assets, plus our new admin editor with HTML 5 support and enhanced code view (in the beginning, we'll deploy with those features set to off but they can be enabled via the Beta Features page). As part of the transition, new features or enhancements will only be included in this new system engine.
    The transition process starts on Wednesday and will be completed towards the end of this spring, when the current rendering engine will be decommissioned. It will be a multi-stage process that is looking to gradually move sites while limiting the customer impact. You can find below the transition schedule:
    •    Milestone 1 (Jan 28, 10:00 AM UTC): Existing trial sites & all sites on webBasics and webBasics+ plans will be transitioned to the new engine. Additionally, all new trial sites will be created on the new engine.
    •    Milestone 2: All sites on the webMarketing site plan
    •    Milestone 3: All partner sites
    •    Milestone 4: webCommerce sites located on the EU datacenter
    •    Milestone 5: webCommerce sites located on the AU datacenter
    •    Milestone 6: webCommerce sites located on the NA datacenter
    •    Milestone 7 (late April): All remaining sites will be switched to the new version; the current version will be decommissioned.
    Note: The dates of the next milestones will be announced in time on the Site Transition Schedule page, based on the progress of the transition. We estimate that all sites should be fully transitioned to the new engine no later than mid Q2 this year.
    The move does not include any updates to the admin user interface that will impact your customers and should not have any impact on the site up time, performance or functionality either. Partners will be able follow an updated transition schedule by visiting the Site Transition Schedule page and subscribing to the transition plan email alerts.
    Even if we we'll transition the sites automatically, we strongly encourage you to see how the sites behave on the new engine before it's actually scheduled for transition (you can enable temporarily a website to be rendered on the new engine, just for you, from the Admin Console Beta Features page). This will give you more confidence that the transition will go smoothly and you won't encounter any problems.
    For more information about the transition, read the Site Transition FAQ.
    Thank you for your support,
    The Adobe Business Catalyst Team

  • Strange bug with the java.io.File class

    Hi everibody!
    I'm writting a system to upload images with JSF and RichFaces. But when i try to delete the images files sometimes hapen some strange bug.
    first i'll post my method code here:
    public void deleteUploadedFile(ActionEvent event) throws Throwable {
            UIComponent link = event.getComponent();
            UIParameter param = (UIParameter) link.findComponent("fileId");
            TheFile file = this.uploadedFiles.get((Integer) param.getValue());
            try {
                File f = new File(file.getPath(), file.getName());
                if ((f.exists()) && (f.canRead()) && (f.canWrite())) {
                    if(f.delete()){
                        for(int i=0; i<file.getThumbs().size(); i++){
                            File t1 = new File(file.getPath(), file.getThumbs().get(i).getThumbName());
                            t1.delete();
                        setDeleted(true);
                    else{
                        setDeleteLog("Arquivo não pode ser excluido");
                        setDeleted(false);
                } else {
                    setDeleteLog("Erro ao tentar excluir o arquivo");
                    setDeleted(false);
                this.finalize();
            } catch (Exception ex) {
                setDeleteLog("Deu erro: " + ex);
            } finally {
                if (this.deleted) {
                    if (this.uploadedFiles.remove(file)) {
                        setDeleteLog("Conseguiu remover");
                    } else {
                        setDeleteLog("Deu erro");
        }Well, when the method run the f.delete() line, sometimes, something strange hapen. With is, the file data is deleted as expected, but the file it self is not deleted. And even when i run the line this.finalize the JVM still using the file, with don't allows me to try to delete it untill my tomcat stop (with kill the application that was using the file). And this don't hapen every time that i try to delete one file.
    And worse, once it hapen every next time that i try to delete one file hapen the same bug.
    My question is...what could it be, and what can i do to solve this?!

    About this is not a possible cause. Because before i upload a file I verify if the file already exists and even after i change the file name:
    //this method change the file name and eliminate all the special characters, and also attach the current day of month,
    //month, year, minute and second to the file name
    public String generateFileName(String fileName){
            Locale l = new Locale("pt","BR");
            Calendar cal = Calendar.getInstance(TimeZone.getTimeZone(TimeZone.getTimeZone("GMT-3").getID()), l);
            int ext = fileName.lastIndexOf('.');
            String name = fileName.replace(fileName.substring(ext), "");
            String newName = RemoverAcentos.remover(name).toLowerCase()+cal.get(cal.DAY_OF_MONTH)+cal.get(cal.MONTH)
                    +cal.get(cal.YEAR)+cal.get(cal.MINUTE)+cal.get(cal.SECOND)+fileName.substring(ext);
            return newName;
        }the upload method
    String fileName = generateFileName(item.getFileName());
            try {
                File uploadFile = new File(filepath, fileName);
                if (!uploadFile.exists()) {

  • Strange bug in GO-OpenOffice 3.1 regarding file opening of long names

    I've noticed a very annoying bug regarding go-openoffice 3.1.0.99.2-1, reproduced by me multiple times. When I try to open some kind of file, regardless of what it is (could be an .ODT or .DOC), and do this by selecting it with File->Open, OpenOffice gives me an error like the one below
    As you can see although I've selected the proper file with the proper name, OO is trying to open a file with a name somewhat shortened, i.e. missing letter "T" at the end. The same file opens without any problem when I selected it in Dolphin. Now, what a strange bug! Anyone had similar experience? Any known solutions to this? It seems to happen only when the name of the file is longer than one line in the OO "opening tab" or whatever it's called.
    Last edited by Zibi1981 (2009-08-20 18:03:43)

    Don't know about vanilla as I don't have it installed at the moment. Maybe someone else can confirm this bug?

Maybe you are looking for

  • Download Button in Web Report

    Hi Experts, I want to Add a Click Button on my Web Template. Which would let me download the report in Excel File. On click of the button it should show my target place as desktop or download folder. Do anyone know whether we have any option in Bex W

  • Feature Request: Make RECENTS better with two more drill down options

    Hi everyone! I love my iPhone but - as with everything - one can make things get even better... Not sure where to post so I try here. Would love to hear if you feel the same need: I realize that RECENTS within the phone application could be improved

  • Colour washed out when using image processor in Bridge CS6

    Hi there I hope somebody can help please?! I am editing raw files in Camera Raw 8.2, then using image processor through Bridge CS6 to save them as both jpegs and tiffs. I am finding the colour on the saved files is coming out a little washed out and

  • Is this possible? to have Logic statements?

    I have 1 Question 1. Person selects a response and  video " A" States that it is the wrong Answer 2. Person selects a response and  video " B" States that it is the wrong Answer 3.  Person selects a response and  video " C" States that it is the Corr

  • Photo stream not working after upgrading to maverick please help?

    have upgraded to Maverick from osx lion sooo much trouble ......memory low photo stream not working everything slow any ideas?