OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2000 Simon Hausmann (hausmann@kde.org) | 4 * (C) 2000 Simon Hausmann (hausmann@kde.org) |
5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
6 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. | 6 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 return view ? adjustForZoom(view->contentsWidth(), document) : 0; | 322 return view ? adjustForZoom(view->contentsWidth(), document) : 0; |
323 } | 323 } |
324 | 324 |
325 void HTMLBodyElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) const | 325 void HTMLBodyElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) const |
326 { | 326 { |
327 HTMLElement::addSubresourceAttributeURLs(urls); | 327 HTMLElement::addSubresourceAttributeURLs(urls); |
328 | 328 |
329 addSubresourceURL(urls, document()->completeURL(getAttribute(backgroundAttr)
)); | 329 addSubresourceURL(urls, document()->completeURL(getAttribute(backgroundAttr)
)); |
330 } | 330 } |
331 | 331 |
| 332 void HTMLBodyElement::acceptHeapVisitor(Visitor* visitor) const |
| 333 { |
| 334 HTMLElement::acceptHeapVisitor(visitor); |
| 335 } |
| 336 |
332 } // namespace WebCore | 337 } // namespace WebCore |
OLD | NEW |