mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 23:08:39 +09:00
Issue #80 - De-unify layout/tables
This commit is contained in:
parent
e68128d9ca
commit
a892cb0808
4 changed files with 9 additions and 1 deletions
|
|
@ -15,6 +15,10 @@
|
|||
#include "nsTableCellFrame.h"
|
||||
#include <algorithm>
|
||||
|
||||
#include "mozilla/WritingModes.h"
|
||||
|
||||
using namespace mozilla;
|
||||
|
||||
FixedTableLayoutStrategy::FixedTableLayoutStrategy(nsTableFrame *aTableFrame)
|
||||
: nsITableLayoutStrategy(nsITableLayoutStrategy::Fixed)
|
||||
, mTableFrame(aTableFrame)
|
||||
|
|
|
|||
|
|
@ -12,6 +12,8 @@
|
|||
#include "nsQuickSort.h"
|
||||
#include "nsIPresShell.h"
|
||||
|
||||
using mozilla::fallible;
|
||||
|
||||
//#define DEBUG_SPANNING_CELL_SORTER
|
||||
|
||||
SpanningCellSorter::SpanningCellSorter()
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ EXPORTS += [
|
|||
'nsITableCellLayout.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'BasicTableLayoutStrategy.cpp',
|
||||
'FixedTableLayoutStrategy.cpp',
|
||||
'nsCellMap.cpp',
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@
|
|||
#include "nsCSSFrameConstructor.h"
|
||||
#include "mozilla/StyleSetHandle.h"
|
||||
#include "mozilla/StyleSetHandleInlines.h"
|
||||
#include "mozilla/gfx/Helpers.h"
|
||||
#include "nsDisplayList.h"
|
||||
#include "nsIScrollableFrame.h"
|
||||
#include "nsCSSProps.h"
|
||||
|
|
@ -48,6 +49,7 @@
|
|||
#include <algorithm>
|
||||
|
||||
using namespace mozilla;
|
||||
using namespace mozilla::gfx;
|
||||
using namespace mozilla::image;
|
||||
using namespace mozilla::layout;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue