| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2006, 2007, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2006, 2007, 2012 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 if (childRulesHaveFailedOrCanceledSubresources(static_cast<const Sty
leRuleHost*>(rule)->childRules())) | 445 if (childRulesHaveFailedOrCanceledSubresources(static_cast<const Sty
leRuleHost*>(rule)->childRules())) |
| 446 return true; | 446 return true; |
| 447 break; | 447 break; |
| 448 case StyleRuleBase::Import: | 448 case StyleRuleBase::Import: |
| 449 ASSERT_NOT_REACHED(); | 449 ASSERT_NOT_REACHED(); |
| 450 case StyleRuleBase::Page: | 450 case StyleRuleBase::Page: |
| 451 case StyleRuleBase::Keyframes: | 451 case StyleRuleBase::Keyframes: |
| 452 case StyleRuleBase::Unknown: | 452 case StyleRuleBase::Unknown: |
| 453 case StyleRuleBase::Charset: | 453 case StyleRuleBase::Charset: |
| 454 case StyleRuleBase::Keyframe: | 454 case StyleRuleBase::Keyframe: |
| 455 #if ENABLE(CSS3_CONDITIONAL_RULES) | |
| 456 case StyleRuleBase::Supports: | 455 case StyleRuleBase::Supports: |
| 457 #endif | |
| 458 #if ENABLE(CSS_DEVICE_ADAPTATION) | 456 #if ENABLE(CSS_DEVICE_ADAPTATION) |
| 459 case StyleRuleBase::Viewport: | 457 case StyleRuleBase::Viewport: |
| 460 #endif | 458 #endif |
| 461 case StyleRuleBase::Filter: | 459 case StyleRuleBase::Filter: |
| 462 break; | 460 break; |
| 463 } | 461 } |
| 464 } | 462 } |
| 465 return false; | 463 return false; |
| 466 } | 464 } |
| 467 | 465 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 info.addMember(m_originalURL, "originalURL"); | 514 info.addMember(m_originalURL, "originalURL"); |
| 517 info.addMember(m_encodingFromCharsetRule, "encodingFromCharsetRule"); | 515 info.addMember(m_encodingFromCharsetRule, "encodingFromCharsetRule"); |
| 518 info.addMember(m_importRules, "importRules"); | 516 info.addMember(m_importRules, "importRules"); |
| 519 info.addMember(m_childRules, "childRules"); | 517 info.addMember(m_childRules, "childRules"); |
| 520 info.addMember(m_namespaces, "namespaces"); | 518 info.addMember(m_namespaces, "namespaces"); |
| 521 info.addMember(m_parserContext, "parserContext"); | 519 info.addMember(m_parserContext, "parserContext"); |
| 522 info.addMember(m_clients, "clients"); | 520 info.addMember(m_clients, "clients"); |
| 523 } | 521 } |
| 524 | 522 |
| 525 } | 523 } |
| OLD | NEW |