Changeset 56486 in webkit


Ignore:
Timestamp:
Mar 24, 2010 9:58:18 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-24 MORITA Hajime <morrita@google.com>

Reviewed by Eric Seidel.

https://bugs.webkit.org/show_bug.cgi?id=36517
svg/dom/frame-related-api-during-load.html shoud be more self-descriptive.

  • svg/dom/frame-related-api-during-load-expected.txt:
  • svg/dom/frame-related-api-during-load.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r56481 r56486  
     12010-03-24  MORITA Hajime  <morrita@google.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=36517
     6        svg/dom/frame-related-api-during-load.html shoud be more self-descriptive.
     7
     8        * svg/dom/frame-related-api-during-load-expected.txt:
     9        * svg/dom/frame-related-api-during-load.html:
     10
    1112010-03-24  Andrew Scherkus  <scherkus@chromium.org>
    212
  • trunk/LayoutTests/svg/dom/frame-related-api-during-load-expected.txt

    r56401 r56486  
     1Test to access Frame related APIs on orphan SVGSVGElement
     2
     3For Bug 31545.
    14OK unless it got crashed.
  • trunk/LayoutTests/svg/dom/frame-related-api-during-load.html

    r56401 r56486  
    77function test()
    88{
    9     html_document = document.implementation.createHTMLDocument();
    10     svg_element = html_document.createElementNS("http://www.w3.org/2000/svg","svg");
     9    htmlDocument = document.implementation.createHTMLDocument();
     10    svgElement = htmlDocument.createElementNS("http://www.w3.org/2000/svg","svg");
    1111    // Implementations of following APIs access Frame object, which can be NULL.
    12     svg_element.deselectAll();
    13     svg_element.currentScale = svg_element.currentScale;
     12    svgElement.deselectAll();
     13    svgElement.currentScale = svgElement.currentScale;
    1414
    1515    document.getElementById("console").innerHTML = "OK unless it got crashed.";
     
    1818</head>
    1919<body onload="test()">
     20<h1>Test to access Frame related APIs on orphan SVGSVGElement</h1>
     21<div>For <a href="https://bugs.webkit.org/show_bug.cgi?id=31545">Bug 31545</a>.</div>
    2022<div id="console"></div>
    2123</body>
Note: See TracChangeset for help on using the changeset viewer.