Status: Unconfirmed
Owner: ----
Labels: Type-Bug Pri-2 OS-All Area-Misc

New issue 10552 by jasmine.carver: Unable to view/expand comments at  
blogger.com (JS or CSS issue?)
http://code.google.com/p/chromium/issues/detail?id=10552

Chrome Version       : <2.0.172.5>
URLs (if applicable) :http://www.blogger.com/moderate-comment.g?
blogID=xxxxxx
Other browsers tested:
   Add OK or FAIL after other browsers where you have tested this issue:
      Safari 4:OK
   Firefox 3.x:OK
          IE 7:OK
          IE 8:OK

What steps will reproduce the problem?
1. Click on a comment to expand it

What is the expected result?
Comments should be expanded.

What happens instead?
Style isn't being applied.
I haven't checked the style for x-browser/standards compliance yet.
(Just weird that a Google flavoured browser doesn't work on a Google owned
website).

Please provide any additional information below. Attach a screenshot if
possible.

Uses style .flippy
from:
http://www.blogger.com/static/v1/v-css/2096024381-blogger_post_table.css

Uses a JS call to setSelected(this, ""); using onclick

JS is in http://www.blogger.com/static/v1/v-app/scripts/1875208845-
rowhiding.js

var dynamicLoadingSupported = createXmlHttp() != null;

function setSelected(titleCell, postId) {
   var row = titleCell.parentNode;

   if (dynamicLoadingSupported) {
     if (hasClass(row, "selected")) {
       setRowAsUnSelected(row, postId);
     } else {
       setRowAsSelected(row, postId);
     }
   }
}

function setRowAsSelected(row, postId) {
   var table = d("posts");
   var snippet = getPostDiv(row, "entirePost");
   removeClass(row, "unselected");
   addClass(row, "selected");
   startLoad(postId, snippet);
}

function setRowAsUnSelected(row, postId) {
   var table = d("posts");
   removeClass(row, "selected");
   addClass(row, "unselected");
}




--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---

Reply via email to