- a/LayoutTests/ChangeLog +14 lines
Lines 1-3 a/LayoutTests/ChangeLog_sec1
1
2012-12-17  Takashi Sakamoto  <tasak@google.com>
2
3
        fast/dom/shadow/host-wrapper-reclaimed.html is failing on EFL bots
4
        https://bugs.webkit.org/show_bug.cgi?id=103109
5
6
        Reviewed by NOBODY (OOPS!).
7
8
        host-wrapper-reclaimed uses gc(), but the function gc is not defined
9
        in all platforms, e.g. "ReferenceError: Can't find variable: gc".
10
        So we should include js-test-pre.js, which defines gc.
11
12
        * fast/dom/shadow/host-wrapper-reclaimed-expected.txt:
13
        * fast/dom/shadow/host-wrapper-reclaimed.html:
14
1
2012-12-17  KyungTae Kim  <ktf.kim@samsung.com>
15
2012-12-17  KyungTae Kim  <ktf.kim@samsung.com>
2
16
3
        Percentage width replaced element incorrectly rendered when intrinsic size changed
17
        Percentage width replaced element incorrectly rendered when intrinsic size changed
- a/LayoutTests/fast/dom/shadow/host-wrapper-reclaimed-expected.txt +3 lines
Line 1 a/LayoutTests/fast/dom/shadow/host-wrapper-reclaimed-expected.txt_sec1
1
PASS successfullyParsed is true
2
3
TEST COMPLETE
1
PASS unless crash.
4
PASS unless crash.
- a/LayoutTests/fast/dom/shadow/host-wrapper-reclaimed.html -3 / +2 lines
Lines 1-12 a/LayoutTests/fast/dom/shadow/host-wrapper-reclaimed.html_sec1
1
<!DOCTYPE html>
1
<!DOCTYPE html>
2
<html>
2
<html>
3
<head>
3
<head>
4
<script src="../../js/resources/js-test-pre.js"></script>
4
</head>
5
</head>
5
<body>
6
<body>
6
<script>
7
<script>
7
if (window.testRunner)
8
    testRunner.dumpAsText();
9
10
function makeOrphanShadow() {
8
function makeOrphanShadow() {
11
    var host = document.createElement("div");
9
    var host = document.createElement("div");
12
    var shadow = host.webkitCreateShadowRoot();
10
    var shadow = host.webkitCreateShadowRoot();
Lines 23-27 shadow.applyAuthorStyles = false; a/LayoutTests/fast/dom/shadow/host-wrapper-reclaimed.html_sec2
23
21
24
document.body.innerHTML = "PASS unless crash.";
22
document.body.innerHTML = "PASS unless crash.";
25
</script>
23
</script>
24
<script src="../../js/resources/js-test-post.js"></script>
26
</body>
25
</body>
27
</html>
26
</html>

Return to Bug 103109