~ubuntu-branches/ubuntu/lucid/webkit/lucid-updates

« back to all changes in this revision

Viewing changes to WebCore/editing/htmlediting.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2010-02-04 19:30:57 UTC
  • mfrom: (1.2.8 upstream) (4.3.9 sid)
  • Revision ID: james.westby@ubuntu.com-20100204193057-d3018lm1fipb0703
* New upstream release
* debian/copyright:
- Updated with changes since 1.1.19.

Show diffs side-by-side

added added

removed removed

Lines of Context:
983
983
 
984
984
bool isMailBlockquote(const Node *node)
985
985
{
986
 
    if (!node || (!node->isElementNode() && !node->hasTagName(blockquoteTag)))
 
986
    if (!node || !node->hasTagName(blockquoteTag))
987
987
        return false;
988
988
        
989
989
    return static_cast<const Element *>(node)->getAttribute("type") == "cite";