mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
5ef4421fa5
Except for the changes in: layout/generic/nsIFrame.h (part) layout/style/nsComputedDOMStyle.h (all) layout/style/nsRuleNode.cpp (part) layout/style/nsStyleContext.cpp (part) layout/style/nsStyleContext.h (part) (see patch 3b in the bug), this patch was written with the sed script: s/\<GetStyle\(Font\|Color\|List\|Text\|Visibility\|Quotes\|UserInterface\|TableBorder\|SVG\|Background\|Position\|TextReset\|Display\|Content\|UIReset\|Table\|Margin\|Padding\|Border\|Outline\|XUL\|SVGReset\|Column\)\>/Style\1/g
90 lines
2.3 KiB
HTML
90 lines
2.3 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<title>nsIAccessible::name calculation for HTML li</title>
|
|
<link rel="stylesheet" type="text/css"
|
|
href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
|
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<script type="application/javascript"
|
|
src="../common.js"></script>
|
|
<script type="application/javascript"
|
|
src="../name.js"></script>
|
|
<script type="application/javascript"
|
|
src="../events.js"></script>
|
|
|
|
<script type="application/javascript">
|
|
/**
|
|
* Alter list item numbering and change list style type.
|
|
*/
|
|
function bulletUpdate()
|
|
{
|
|
this.eventSeq = [
|
|
new invokerChecker(EVENT_REORDER, getNode("list"))
|
|
];
|
|
|
|
this.invoke = function bulletUpdate_invoke()
|
|
{
|
|
testName("li_end", "1. list end");
|
|
|
|
var li = document.createElement("li");
|
|
li.setAttribute("id", "li_start");
|
|
li.textContent = "list start";
|
|
getNode("list").insertBefore(li, getNode("li_end"));
|
|
}
|
|
|
|
this.finalCheck = function bulletUpdate_finalCheck()
|
|
{
|
|
testName("li_start", "1. list start");
|
|
testName("li_end", "2. list end");
|
|
|
|
// change list style type
|
|
var list = getNode("list");
|
|
list.setAttribute("style", "list-style-type: disc;");
|
|
getComputedStyle(list, "").color; // make style processing sync
|
|
|
|
testName("li_start", kDiscBulletText + "list start");
|
|
testName("li_end", kDiscBulletText + "list end");
|
|
}
|
|
|
|
this.getID = function bulletUpdate_getID()
|
|
{
|
|
return "Update bullet of list items";
|
|
}
|
|
}
|
|
|
|
var gQueue = null;
|
|
function doTest()
|
|
{
|
|
gQueue = new eventQueue();
|
|
gQueue.push(new bulletUpdate());
|
|
gQueue.invoke(); // SimpleTest.finish();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
addA11yLoadEvent(doTest);
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<a target="_blank"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=634200"
|
|
title="crash [@ nsIFrame::StyleVisibility() ]">
|
|
Mozilla Bug 634200
|
|
</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none"></div>
|
|
<pre id="test">
|
|
</pre>
|
|
|
|
<ol id="list">
|
|
<li id="li_end">list end</li>
|
|
</ol>
|
|
|
|
</body>
|
|
</html>
|