| 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) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. |
| 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. |
| (...skipping 1978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1989 } | 1989 } |
| 1990 | 1990 |
| 1991 PassRefPtr<ComputedStyle> Document::styleForPage(int pageIndex) | 1991 PassRefPtr<ComputedStyle> Document::styleForPage(int pageIndex) |
| 1992 { | 1992 { |
| 1993 updateDistribution(); | 1993 updateDistribution(); |
| 1994 return ensureStyleResolver().styleForPage(pageIndex); | 1994 return ensureStyleResolver().styleForPage(pageIndex); |
| 1995 } | 1995 } |
| 1996 | 1996 |
| 1997 bool Document::isPageBoxVisible(int pageIndex) | 1997 bool Document::isPageBoxVisible(int pageIndex) |
| 1998 { | 1998 { |
| 1999 return styleForPage(pageIndex)->visibility() != HIDDEN; // display property
doesn't apply to @page. | 1999 return styleForPage(pageIndex)->visibility() != EVisibility::Hidden; // disp
lay property doesn't apply to @page. |
| 2000 } | 2000 } |
| 2001 | 2001 |
| 2002 void Document::pageSizeAndMarginsInPixels(int pageIndex, DoubleSize& pageSize, i
nt& marginTop, int& marginRight, int& marginBottom, int& marginLeft) | 2002 void Document::pageSizeAndMarginsInPixels(int pageIndex, DoubleSize& pageSize, i
nt& marginTop, int& marginRight, int& marginBottom, int& marginLeft) |
| 2003 { | 2003 { |
| 2004 RefPtr<ComputedStyle> style = styleForPage(pageIndex); | 2004 RefPtr<ComputedStyle> style = styleForPage(pageIndex); |
| 2005 | 2005 |
| 2006 double width = pageSize.width(); | 2006 double width = pageSize.width(); |
| 2007 double height = pageSize.height(); | 2007 double height = pageSize.height(); |
| 2008 switch (style->getPageSizeType()) { | 2008 switch (style->getPageSizeType()) { |
| 2009 case PAGE_SIZE_AUTO: | 2009 case PAGE_SIZE_AUTO: |
| (...skipping 4022 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6032 } | 6032 } |
| 6033 | 6033 |
| 6034 void showLiveDocumentInstances() | 6034 void showLiveDocumentInstances() |
| 6035 { | 6035 { |
| 6036 WeakDocumentSet& set = liveDocumentSet(); | 6036 WeakDocumentSet& set = liveDocumentSet(); |
| 6037 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 6037 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
| 6038 for (Document* document : set) | 6038 for (Document* document : set) |
| 6039 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get
String().utf8().data()); | 6039 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get
String().utf8().data()); |
| 6040 } | 6040 } |
| 6041 #endif | 6041 #endif |
| OLD | NEW |