Changeset 168355 in webkit


Ignore:
Timestamp:
May 6, 2014 5:37:52 AM (10 years ago)
Author:
stavila@adobe.com
Message:

Web Inspector: [CSS Regions] Add the regionOversetChange event to the iOS 7.0 WebInspector UI
https://bugs.webkit.org/show_bug.cgi?id=132566

Reviewed by Antti Koivisto.

The regionOversetChange event was missing from the iOS7 WebInspector.

  • UserInterface/Protocol/Legacy/7.0/InspectorWebBackendCommands.js:
  • Versions/Inspector-iOS-7.0.json:
Location:
trunk/Source/WebInspectorUI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r168306 r168355  
     12014-05-06  Radu Stavila  <stavila@adobe.com>
     2
     3        Web Inspector: [CSS Regions] Add the regionOversetChange event to the iOS 7.0 WebInspector UI
     4        https://bugs.webkit.org/show_bug.cgi?id=132566
     5
     6        Reviewed by Antti Koivisto.
     7
     8        The regionOversetChange event was missing from the iOS7 WebInspector.
     9
     10        * UserInterface/Protocol/Legacy/7.0/InspectorWebBackendCommands.js:
     11        * Versions/Inspector-iOS-7.0.json:
     12
    1132014-05-05  Radu Stavila  <stavila@adobe.com>
    214
  • trunk/Source/WebInspectorUI/UserInterface/Protocol/Legacy/7.0/InspectorWebBackendCommands.js

    r168306 r168355  
    204204InspectorBackend.registerEvent("CSS.namedFlowCreated", ["namedFlow"]);
    205205InspectorBackend.registerEvent("CSS.namedFlowRemoved", ["documentNodeId", "flowName"]);
     206InspectorBackend.registerEvent("CSS.regionOversetChanged", ["namedFlow"]);
    206207InspectorBackend.registerCommand("CSS.enable", [], []);
    207208InspectorBackend.registerCommand("CSS.disable", [], []);
  • trunk/Source/WebInspectorUI/Versions/Inspector-iOS-7.0.json

    r168306 r168355  
    21842184                ],
    21852185                "description": "Fires when a Named Flow is removed: has no associated content nodes and regions."
     2186            },
     2187            {
     2188                "name": "regionOversetChanged",
     2189                "parameters": [
     2190                    { "name": "namedFlow", "$ref": "NamedFlow", "description": "The Named Flow containing the regions whose regionOverset values changed." }
     2191                ],
     2192                "description": "Fires if any of the regionOverset values changed in a Named Flow's region chain."
    21862193            }
    21872194        ]
Note: See TracChangeset for help on using the changeset viewer.