OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "config.h" | 5 #include "config.h" |
6 | 6 |
7 #include "AtomicString.h" | 7 #include "AtomicString.h" |
| 8 #include "CSSComputedStyleDeclaration.h" |
| 9 #include "CSSRule.h" |
| 10 #include "CSSRuleList.h" |
| 11 #include "CSSStyleRule.h" |
| 12 #include "CSSStyleSheet.h" |
| 13 #include "DOMWindow.h" |
8 #include "Document.h" | 14 #include "Document.h" |
9 #include "Event.h" | 15 #include "Event.h" |
10 #include "EventListener.h" | 16 #include "EventListener.h" |
11 #include "EventNames.h" | 17 #include "EventNames.h" |
12 #include "EventTarget.h" | 18 #include "EventTarget.h" |
13 #include "HTMLFrameOwnerElement.h" | 19 #include "HTMLFrameOwnerElement.h" |
14 #include "markup.h" | 20 #include "markup.h" |
15 #include "MutationEvent.h" | 21 #include "MutationEvent.h" |
16 #include "Node.h" | 22 #include "Node.h" |
17 #include "NodeList.h" | 23 #include "NodeList.h" |
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 } | 434 } |
429 | 435 |
430 ListValue list; | 436 ListValue list; |
431 for (HashSet<int>::iterator it = node_ids.begin(); | 437 for (HashSet<int>::iterator it = node_ids.begin(); |
432 it != node_ids.end(); ++it) { | 438 it != node_ids.end(); ++it) { |
433 list.Append(Value::CreateIntegerValue(*it)); | 439 list.Append(Value::CreateIntegerValue(*it)); |
434 } | 440 } |
435 delegate_->DidPerformSearch(call_id, list); | 441 delegate_->DidPerformSearch(call_id, list); |
436 } | 442 } |
437 | 443 |
| 444 void DomAgentImpl::GetNodeStyles(int call_id, |
| 445 int element_id, |
| 446 bool author_only) { |
| 447 // TODO (serya): Currently styles are serialized as cssText. |
| 448 // It could be not enough. |
| 449 String computed_style; |
| 450 String inline_style; |
| 451 OwnPtr<DictionaryValue> style_attributes(new DictionaryValue()); |
| 452 OwnPtr<ListValue> matched_css_rules(new ListValue()); |
| 453 |
| 454 Node* node = GetNodeForId(element_id); |
| 455 DCHECK(!node || node->nodeType() == Node::ELEMENT_NODE); |
| 456 if (node && node->nodeType() == Node::ELEMENT_NODE) { |
| 457 Element* element = static_cast<Element*>(node); |
| 458 inline_style = element->style()->cssText(); |
| 459 DOMWindow* window = element->document()->defaultView(); |
| 460 computed_style = window->getComputedStyle(element, "")->cssText(); |
| 461 BuildValueForCSSRules(*window->getMatchedCSSRules(element, "", |
| 462 author_only), *matched_css_rules); |
| 463 BuildValueForAttributeStyles(*element->attributes(), |
| 464 *style_attributes); |
| 465 } |
| 466 |
| 467 DictionaryValue styles; |
| 468 |
| 469 styles.SetString(L"computedStyle", |
| 470 webkit_glue::StringToStdString(computed_style)); |
| 471 styles.SetString(L"inlineStyle", |
| 472 webkit_glue::StringToStdString(inline_style)); |
| 473 styles.Set(L"styleAttributes", style_attributes.release()); |
| 474 styles.Set(L"matchedCSSRules", matched_css_rules.release()); |
| 475 |
| 476 delegate_->DidGetNodeStyles(call_id, styles); |
| 477 } |
| 478 |
| 479 void DomAgentImpl::BuildValueForCSSRules(CSSRuleList& matched, |
| 480 ListValue& descriptionList) { |
| 481 for (unsigned i = 0; i < matched.length(); ++i) { |
| 482 if (!matched.item(i)->isStyleRule()) { |
| 483 continue; |
| 484 } |
| 485 |
| 486 CSSStyleRule* rule = static_cast<CSSStyleRule*>(matched.item(i)); |
| 487 String selector_text = rule->selectorText(); |
| 488 String css_text; |
| 489 |
| 490 CSSMutableStyleDeclaration* style = rule->style(); |
| 491 if (style) { |
| 492 css_text = style->cssText(); |
| 493 } |
| 494 |
| 495 OwnPtr<DictionaryValue> description(new DictionaryValue()); |
| 496 description->SetString(L"selector", |
| 497 webkit_glue::StringToStdString(selector_text)); |
| 498 description->SetString(L"cssText", |
| 499 webkit_glue::StringToStdString(css_text)); |
| 500 |
| 501 CSSStyleSheet* parent_style_sheet = rule->parentStyleSheet(); |
| 502 if (parent_style_sheet) { |
| 503 description->SetString(L"parentStyleSheetHref", |
| 504 webkit_glue::StringToStdString(parent_style_sheet->href())); |
| 505 |
| 506 Node* owner_node = parent_style_sheet->ownerNode(); |
| 507 if (owner_node) { |
| 508 description->SetString(L"parentStyleSheetOwnerNodeName", |
| 509 webkit_glue::StringToStdString(owner_node->nodeName())); |
| 510 } |
| 511 } |
| 512 |
| 513 descriptionList.Append(description.release()); |
| 514 } |
| 515 } |
| 516 |
| 517 void DomAgentImpl::BuildValueForAttributeStyles(const NamedNodeMap& attributes, |
| 518 DictionaryValue& description) { |
| 519 for (size_t i = 0; i < attributes.length(); ++i) { |
| 520 Attribute* attr = attributes.attributeItem(i); |
| 521 |
| 522 if (CSSStyleDeclaration* style = attr->style()) { |
| 523 std::wstring name = |
| 524 webkit_glue::StringToStdWString(attr->name().toString()); |
| 525 std::string css_text = |
| 526 webkit_glue::StringToStdString(style->cssText()); |
| 527 |
| 528 description.SetString(name, css_text); |
| 529 } |
| 530 } |
| 531 } |
| 532 |
438 ListValue* DomAgentImpl::BuildValueForNode(Node* node, int depth) { | 533 ListValue* DomAgentImpl::BuildValueForNode(Node* node, int depth) { |
439 OwnPtr<ListValue> value(new ListValue()); | 534 OwnPtr<ListValue> value(new ListValue()); |
440 int id = Bind(node); | 535 int id = Bind(node); |
441 String nodeName; | 536 String nodeName; |
442 String nodeValue; | 537 String nodeValue; |
443 | 538 |
444 switch (node->nodeType()) { | 539 switch (node->nodeType()) { |
445 case Node::TEXT_NODE: | 540 case Node::TEXT_NODE: |
446 case Node::COMMENT_NODE: | 541 case Node::COMMENT_NODE: |
447 nodeValue = node->nodeValue(); | 542 nodeValue = node->nodeValue(); |
(...skipping 30 matching lines...) Expand all Loading... |
478 } | 573 } |
479 | 574 |
480 ListValue* DomAgentImpl::BuildValueForElementAttributes(Element* element) { | 575 ListValue* DomAgentImpl::BuildValueForElementAttributes(Element* element) { |
481 OwnPtr<ListValue> attributes_value(new ListValue()); | 576 OwnPtr<ListValue> attributes_value(new ListValue()); |
482 // Go through all attributes and serialize them. | 577 // Go through all attributes and serialize them. |
483 const NamedNodeMap* attr_map = element->attributes(true); | 578 const NamedNodeMap* attr_map = element->attributes(true); |
484 if (!attr_map) { | 579 if (!attr_map) { |
485 return attributes_value.release(); | 580 return attributes_value.release(); |
486 } | 581 } |
487 unsigned num_attrs = attr_map->length(); | 582 unsigned num_attrs = attr_map->length(); |
488 for (unsigned i = 0; i < num_attrs; i++) { | 583 for (unsigned i = 0; i < num_attrs; ++i) { |
489 // Add attribute pair | 584 // Add attribute pair |
490 const Attribute *attribute = attr_map->attributeItem(i); | 585 const Attribute *attribute = attr_map->attributeItem(i); |
491 OwnPtr<Value> name(Value::CreateStringValue( | 586 OwnPtr<Value> name(Value::CreateStringValue( |
492 webkit_glue::StringToStdWString(attribute->name().toString()))); | 587 webkit_glue::StringToStdWString(attribute->name().toString()))); |
493 OwnPtr<Value> value(Value::CreateStringValue( | 588 OwnPtr<Value> value(Value::CreateStringValue( |
494 webkit_glue::StringToStdWString(attribute->value()))); | 589 webkit_glue::StringToStdWString(attribute->value()))); |
495 attributes_value->Append(name.release()); | 590 attributes_value->Append(name.release()); |
496 attributes_value->Append(value.release()); | 591 attributes_value->Append(value.release()); |
497 } | 592 } |
498 return attributes_value.release(); | 593 return attributes_value.release(); |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
542 } | 637 } |
543 } | 638 } |
544 | 639 |
545 Element* DomAgentImpl::InnerParentElement(Node* node) { | 640 Element* DomAgentImpl::InnerParentElement(Node* node) { |
546 Element* element = node->parentElement(); | 641 Element* element = node->parentElement(); |
547 if (!element) { | 642 if (!element) { |
548 return node->ownerDocument()->ownerElement(); | 643 return node->ownerDocument()->ownerElement(); |
549 } | 644 } |
550 return element; | 645 return element; |
551 } | 646 } |
OLD | NEW |