Skip to content

Commit

Permalink
Bug 373839 - Editor no longer works with JAWS
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Li committed Mar 9, 2012
1 parent f78ff93 commit ab0340c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3379,6 +3379,7 @@ define("orion/textview/textView", ['orion/textview/textModel', 'orion/textview/k
rootDiv.tabIndex = -1;
rootDiv.style.position = "absolute";
rootDiv.style.overflow = "hidden";
rootDiv.setAttribute("role", "application");
parent.appendChild(rootDiv);

var leftDiv = document.createElement("DIV");
Expand Down Expand Up @@ -3408,7 +3409,6 @@ define("orion/textview/textView", ['orion/textview/textModel', 'orion/textview/k
viewDiv.style.borderWidth = "0px";
viewDiv.style.margin = "0px";
viewDiv.style.outline = "none";
viewDiv.setAttribute("role", "application");
rootDiv.appendChild(viewDiv);

var rightDiv = document.createElement("DIV");
Expand Down

0 comments on commit ab0340c

Please sign in to comment.